/*-----------------------------------*\
  #main.css
\*-----------------------------------*/


/**
 * copyright 2022 codewithsadee
 */










/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/


html{
  scroll-behavior: smooth;
}


:root {


  /**
   * colors
   */


  --violet-blue-crayola: hsla(234, 50%, 64%, 1);
  --dark-cornflower-blue_a7: hsla(214, 88%, 27%, 0.07);
  --white: hsla(0, 0%, 100%, 1);
  --white_a3: hsla(0, 0%, 100%, 0.03);
  --white_a8: hsla(0, 0%, 100%, 0.08);
  --white_a12: hsla(0, 0%, 100%, 0.12);
  --white_a70: hsla(0, 0%, 100%, 0.7);
  --cultured: hsla(220, 20%, 97%, 1);
  --lavender-web: hsla(233, 52%, 94%, 1);
  --cadet-blue-crayola: hsla(220, 12%, 70%, 1);
  --cadet-blue-crayola_a20: hsla(222, 23%, 71%, 0.2);
  --charcoal: hsla(218, 22%, 26%, 1);
  --raisin-black: hsla(216, 14%, 14%, 1);
  --light-gray: hsla(0, 0%, 79%, 1);
  --blue-crayola: hsla(219, 72%, 56%, 1);
  --black-coral: hsla(220, 12%, 43%, 1);


  /**
   * typography
   */


  --ff-manrope: 'Manrope', sans-serif;


  --fs-1: calc(2.7rem + 1.38vw);
  --fs-2: calc(2.6rem + .66vw);
  --fs-3: 2.2rem;
  --fs-4: 1.9rem;
  --fs-5: 1.8rem;
  --fs-6: 1.7rem;
  --fs-7: 1.5rem;
  --fs-8: 1.4rem;
 
  --fw-700: 700;


  /**
   * spacing
   */


  --section-padding: 90px;


  /**
   * box shadow
   */


  --shadow-1: 0 0 20px hsla(216, 14%, 14%, 0.05);
  --shadow-2: 0 0 0 0.05rem hsla(214, 88%, 27%, 0.08), 0 0 1.25rem hsla(216, 14%, 14%, 0.06);
  --shadow-3: 0 0 1.25rem hsla(216, 14%, 14%, 0.04);


  /**
   * border radius
   */


  --radius-circle: 50%;
  --radius-pill: 100px;
  --radius-10: 10px;
  --radius-8: 8px;
  --radius-6: 6px;


  /**
   * transition
   */


  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --transition-3: 0.3s ease-in-out;


}










/*-----------------------------------*\
  #RESET
\*-----------------------------------*/


*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


li { list-style: none; }


a,
img,
span,
input,
button,
ion-icon { display: block; }


a {
  color: inherit;
  text-decoration: none;
}


img { height: auto; }


input,
button {
  background: none;
  border: none;
  font: inherit;
}


input { width: 100%; }


button { cursor: pointer; }


ion-icon { pointer-events: none; }


address { font-style: normal; }


html {
  font-family: var(--ff-manrope);
  font-size: 10px;
  scroll-behavior: smooth;
}


body {
  background-color: var(--white);
  color: var(--black-coral);
  font-size: 1.6rem;
  line-height: 1.7;
}


body.nav-active { overflow: hidden; }


::-webkit-scrollbar { width: 10px; }


::-webkit-scrollbar-track { background-color: hsl(0, 0%, 98%); }


::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }


::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }










/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/


.container { padding-inline: 16px; }


.social-list {
  display: flex;
  align-items: center;
  gap: 10px;
}


.social-link {
  font-size: 2rem;
  transition: var(--transition-1);
}


.social-link:is(:hover, :focus-visible) { transform: translateY(-3px); }


.section { padding-block: var(--section-padding); }


.has-bg-image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}


.h1,
.h2,
.h3,
.h4,
.h5 {
  color: var(--charcoal);
  font-weight: var(--fw-700);
  line-height: 1.3;
}


.h1 { font-size: var(--fs-1); }


.h2 { font-size: var(--fs-2); }


.h3 { font-size: var(--fs-3); }


.h4 { font-size: var(--fs-4); }


.h5 { font-size: var(--fs-6); }






.btn {
  color: var(--white);
  font-size: var(--fs-6);
  font-weight: var(--fw-700);
  border: 2px solid var(--white);
  max-width: max-content;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  transition: var(--transition-1);
  will-change: transform;
}


.btn:is(:hover, :focus-visible) { transform: translateY(-4px); }


.btn-primary,
.btn-outline:is(:hover, :focus-visible) {
  background-color: var(--white);
  color: var(--charcoal);
}


.btn btn-primary{
  background-color: var(--purple);
}


.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
  overflow: hidden;
}


.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.section-subtitle {
  font-size: var(--fs-7);
  text-transform: uppercase;
  color: var(--violet-blue-crayola);
  font-weight: var(--fw-700);
  margin-block-end: 16px;
}


.section-subtitle1 {
  font-weight: var(--fw-700);
  text-transform: uppercase;
  color: var(--violet-blue-crayola);
  margin-block-end: 16px;
}


.section-subtitle2 {
  font-size: 2em;
  text-transform: uppercase;
  color: #000;
  margin-block-end: 16px;
}


.grid-list {
  display: grid;
  gap: 25px;
  margin-bottom: 50px;
}












/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/


.header .btn { display: none; }


.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 20px;
  box-shadow: var(--shadow-1);
  z-index: 4;
}


.header.active {
  background-color: var(--white);
  position: fixed;
  animation: slideIn 0.5s ease forwards;
}


@keyframes slideIn {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}


.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}


.header.active .logo-light,
.header .logo-dark { display: none; }


.header .logo-light,
.header.active .logo-dark { display: block; }


.nav-open-btn {
  font-size: 3.5rem;
  color: var(--white);
}


.header.active .nav-open-btn { color: var(--charcoal); }


.navbar {
  position: fixed;
  top: 0;
  left: -300px;
  background-color: var(--raisin-black);
  color: var(--white);
  max-width: 300px;
  width: 100%;
  height: 100vh;
  padding: 30px;
  padding-block-end: 70px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 2;
  visibility: hidden;
  transition: var(--transition-3);
}


.navbar.active {
  visibility: visible;
  transform: translateX(300px);
}


.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.nav-close-btn {
  background-color: var(--white_a8);
  color: var(--white);
  font-size: 2rem;
  padding: 6px;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
}


.nav-close-btn ion-icon { --ionicon-stroke-width: 50px; }


.nav-close-btn:is(:hover, :focus-visible) { background-color: var(--white_a12); }


.navbar-list { margin-block-end: auto; }


.navbar-link {
  font-weight: var(--fw-700);
  padding-block: 6px;
}


.contact-link { transition: var(--transition-1); }


.contact-link:is(:hover, :focus-visible) { color: var(--violet-blue-crayola); }


.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--raisin-black);
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-1);
}


.overlay.active {
  pointer-events: all;
  opacity: 0.8;
}




/*-----whatsapp-----*/


#whatsapp .wtsapp{
 position: fixed;
 transform: all .5s ease;
 background-color: #25d366;
 display: block;
 text-align: center;
 box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
 border-radius: 50px;
 border-right: none;
 color: #fff;
 font-weight: 700;
 font-size: 30px;
 bottom: 70px;
 right: 20px;
 border: 0;
 z-index: 9999;
 width: 50px;
 height: 50px;
 line-height: 50px;


}
#whatsapp .wtsapp:before{
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms easeout infinite;
  animation: pulse-border 1500ms ease-out infinite;
}
#whatsapp .wtsapp:focus{
  border: none;
  outline: none;
}
 @keyframes pulse-border{
  0%{
  transform: translateX(-50%)translateY(-50%) translateZ(0) scale(1);
  opacity: 1;
}
100%{
  transform: translateX(-50%)translateY(-50%) translateZ(0) scale(1.5);
  opacity: 1;
}
 }




/*-----careers-----*/




.formcareer {
  background-color: #15172b;
  border-radius: 20px;
  box-sizing: border-box;
  height: 450px;
  padding: 10px;
  width: 420px;
  vertical-align: middle;
  align-items: center;
  align-self: center;
}


.titlecareer {
  color: #eee;
  font-family: sans-serif;
  font-size: 30px;
  font-weight: 600;
 
}


.input-container {
  height: 50px;
  position: relative;
  width: 100%;
}


.ic1 {
  margin-top: 20px;
}


.ic2 {
  margin-top: 20px;
}


.input {
  background-color: #303245;
  border-radius: 12px;
  border: 0;
  box-sizing: border-box;
  color: #eee;
  font-size: 18px;
  height: 100%;
  outline: 0;
  padding: 4px 20px 0;
  width: 100%;
}


.cut {
  background-color: #15172b;
  border-radius: 10px;
  height: 20px;
  left: 20px;
  position: absolute;
  top: -20px;
  transform: translateY(0);
  transition: transform 200ms;
  width: 76px;
}


.cut-short {
  width: 50px;
}


.input:focus ~ .cut,
.input:not(:placeholder-shown) ~ .cut {
  transform: translateY(8px);
}


.placeholder {
  color: #65657b;
  font-family: sans-serif;
  left: 20px;
  line-height: 14px;
  pointer-events: none;
  position: absolute;
  transform-origin: 0 50%;
  transition: transform 200ms, color 200ms;
  top: 20px;
}


.input:focus ~ .placeholder,
.input:not(:placeholder-shown) ~ .placeholder {
  transform: translateY(-30px) translateX(10px) scale(0.75);
}


.input:not(:placeholder-shown) ~ .placeholder {
  color: #808097;
}


.input:focus ~ .placeholder {
  color: #dc2f55;
}


.submit {
  background-color: #0dbd39;
  border-radius: 12px;
  border: 0;
  box-sizing: border-box;
  color: #eee;
  cursor: pointer;
  font-size: 18px;
  height: 40px;
  margin-top: 38px;
 outline: 0;
  text-align: center;
  width: 100%;
}


.submit:active {
  background-color: #06b;
}




.rowcon{
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 5px 0;
  align-content: center;
  align-items: center;
  margin-top: -30px;
}


.colcon-3{
  flex: 1;
  border: none;
  margin: 2px;
  margin-right: 12px;
  padding: 15px;
  transition: 0.3s;
  align-content: center;
  align-items: center;
  background-color: #fef2f2;
  border-radius: 12px;
}
.colcon-3 img{
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.colcon-3:first-child{
  margin-left: 6px;
  border-radius: 100px;
  padding: 25px;
}
.colcon-3:last-child{
  margin-right: 3px;
  border-radius: 70px;
  padding: 15px;
  padding-bottom: 16px;
}
.headcon{
  color: #000b84;
  padding-top: 10px;
  text-align: center;
  font-size: 3.2rem;
}


@media screen and (max-width: 980px) {
  .colcon-3 .rowcon{
    margin-bottom: 5px;
    flex-basis: 40%;
  }
  .rowcon .colcon-3:last-child{
    flex-basis: 100%;
    margin: 0;
  }
  .rowcon .colcon-3:nth-last-child(2){
    margin-right: 0;
  }


}


@media screen and (max-width: 680px) {
  .rowcon .colcon-3{
    flex-basis: 100%;
    margin: 0 0 5px 0;
  }
}




.gotopbtn{
  position: fixed;
  width: 50px;
  height: 37px;
  background: #FC9D03 ;
  bottom: 8px;
  right: 25px;
  cursor: pointer;
  display: none;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  border-radius: 5px;
  
}


.customer .container{
display:grid;
gap: 50px;
margin-top: 200px;
margin-bottom: 75px;
}


.rowcust {
  display: flex;
}
.columncust {
  flex: 25%;
  padding: 5px;
}


.columncust img{
  border-radius: 8px;
  box-shadow: 0 4px 8px 0 rgb(248, 246, 246), 0 6px 20px 0 rgba(253, 211, 0, 0.6);
}
/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 500px) {
  .columncust {
    width: 100%;
  }
}




.downproduct{
 
  cursor: pointer;
  height: 47px;
  width:170px;
  background-color: #d4d4d4;
  margin-left: auto;
  margin-right: auto;
  margin-top: -90px;
  margin-bottom: 20px;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
 border: #000 solid 1px;
}
.downproduct:hover{
    transform: scale(1.2);
    -webkit-transform: scale(0 .5s);
    -ms-transform: scale(1.2);
  }


/*-----------------------------------*\
  #HERO
\*-----------------------------------*/


.hero {
  padding-block-start: calc(var(--section-padding) + 70px);
  text-align: center;
}


.hero .container {
  display: grid;
  gap: 70px;
}


.hero-title { color: var(--white); }


.hero-subtitle { color: #FC9D03; }


.hero-text {
  font-size: var(--fs-5);
  color: var(--white);
  margin-block: 24px 36px;
}


.btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}


.hero-slider,
.hero-card { position: relative; }


.hero-card .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  color: var(--charcoal);
  font-size: 2rem;
  padding: 25px;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
  animation: pulse 2s ease infinite;
}


.hero-card .play-btn:is(:hover, :focus-visible) { color: var(--violet-blue-crayola); }


@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--white_a70); }
  75% { box-shadow: 0 0 0 20px transparent; }
}


.hero .slider-inner {
  border-radius: var(--radius-10);
  overflow: hidden;
}


.hero .slider-container {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  transition: var(--transition-2);
  animation: slide 18s infinite;
}


/* Keyframes with longer first slide */ @keyframes slide { 0% { transform: translateX(0); } 15% { transform: translateX(0); } /* Hold first slide longer */ 25% { transform: translateX(-100%); } 35% { transform: translateX(-200%); } 45% { transform: translateX(-300%); } 55% { transform: translateX(-400%); } 65% { transform: translateX(-500%); } 75% { transform: translateX(-600%); } 85% { transform: translateX(-700%); } 95% { transform: translateX(-800%); } 100% { transform: translateX(0); } /* Reset back to first */ }


.hero .slider-item {
  min-width: 100%;
  width: 100%;
  border-radius: var(--radius-10);
  overflow: hidden;
}


.hero .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white_a70);
  color: var(--charcoal);
  font-size: 2rem;
  padding: 12px;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
}


.hero .slider-btn:is(:hover, :focus-visible) { background-color: var(--white); }


.hero .slider-btn.prev { left: 20px; }


.hero .slider-btn.next { right: 20px; }










/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/


.service { text-align: center; }


.service .section-title { margin-block-end: 50px; }


.service-card {
  padding: 40px;
  box-shadow: var(--shadow-2);
  border-radius: var(--radius-6);
}


.service-card .card-icon {
  width: 60px;
  height: 60px;
  background-color: #000;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 2.5rem;
  border-radius: var(--radius-circle);
  margin-inline: auto;
}


.service-card .card-icon ion-icon { --ionicon-stroke-width: 50px; }


.service-card  { margin-block: 16px 10px; }






.service-card .btn-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-block-start: 10px;
  color: var(--violet-blue-crayola);
  font-weight: var(--fw-700);
  transition: var(--transition-1);
  transition: 300ms ease-in-out;
}


.service-card .btn-text:is(:hover, :focus-visible) { opacity: 0.9; }


.service-card:hover{
  transform: rotate(-4deg);
}


.service-card:hover ~ .service-card{
  z-index: 1;
  transition: translate(60px);
}


/*--------------BRANDS-----------------*/
.sliderb{
  height: 150px;
  margin: auto;
  overflow: hidden;
  max-width:1700px;
  width: 100%;
  background-color: #000;
  position: absolute;
  white-space: nowrap;
 
}
.sliderb .slide-track-brands{
  animation: marquee 25s linear infinite;
  display: flex;
  width: calc(300px *11);
  animation-delay: 4s;
}
.sliderb .slideb{
  height:120px;
  width: 1580px;
  padding:  34px;
  animation-delay: 4s;
}


.slideb img{
  width: 400%;
  cursor: pointer;
 
}
/*--.slideb img:hover{
  filter: grayscale(0);
}---*/
@keyframes marquee{
  0%{
    transform: translateX(0);
  }
  100%{
transform: translateX(calc(-300px * 7));
  }
  }
@media (max-width: 980px) {
  .headers{
    margin-top: 50px;
  }
 
 
}
@media (max-width: 680px) {
  .headers{
    margin-top: 50px;
  }
 
}


/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/


.about .container {
  display: grid;
  gap: 50px;
}


.about .section-title { margin-block-end: 35px; }


.accordion-card .card-title { padding-block-end: 20px; }


.accordion-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}


.accordion-btn ion-icon {
  font-size: 1.5rem;
  color: var(--blue-crayola);
  transition: var(--transition-1);
}


.accordion-card.expanded .accordion-btn ion-icon {
  transform: rotate(0.5turn);
}


.accordion-btn .span { transition: var(--transition-1); }


.accordion-btn:is(:hover, :focus-visible) .span,
.accordion-card.expanded .accordion-btn .span { color: var(--violet-blue-crayola); }


.accordion-content {
  padding-inline-start: 24px;
  max-height: 0;
  overflow: hidden;
}


.accordion-card.expanded .accordion-content {
  max-height: max-content;
  padding-block-end: 20px;
}


.responsive-img
{ max-width: 100%; /* never exceed container width */ height: auto; /* keep aspect ratio */ display: block; /* removes inline spacing */ }






/*-----------------------------------*\
  #FEATURES
\*-----------------------------------*/


.feature .container {
  display: grid;
  gap: 50px;
}


.feature .section-text { margin-block: 25px 30px; }


.feature-list {
  display: grid;
  gap: 15px;
}


.feature-card {
  display: flex;
  align-items: center;
  gap: 10px;
}


.feature-card .card-icon {
  background-color: var(--lavender-web);
  font-size: 1.4rem;
  padding: 4px;
  border-radius: var(--radius-circle);
}


.feature-card .card-icon ion-icon { --ionicon-stroke-width: 40px; }










/*-----------------------------------*\
  #STATS
\*-----------------------------------*/


.stats { background-image: linear-gradient(to bottom, var(--white) 50%, var(--cultured) 50%); }


/*--.stats-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 24px;
  padding: 45px 30px;
  
}--*/

.stats-card.has-bg-image {
  background-size: cover;       /* ensures image covers the area */
  background-position: center;  /* keeps image centered */
  background-repeat: no-repeat; /* prevents tiling */
  border-radius: 8px;           /* optional, for rounded corners */
  padding-left: 20px;  
  padding-top: 30px;
  padding-bottom: 30px;
  border-radius: var(--radius-8);              /* spacing inside */
   text-align: center;
   display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}


/* Mobile adjustments */
@media (max-width: 768px) {
  .stats-card.has-bg-image {
   /*  background-size: contain;   fit image inside container */
    background-position: top;   /* adjust position for smaller screens */
    padding-top: 20px;
    background-size: cover;       /* ensures image covers the area */
  background-position: center;  /* keeps image centered */
  background-repeat: no-repeat; /* prevents tiling */
  border-radius: 8px;           /* optional, for rounded corners */
  border-radius: var(--radius-8);              /* spacing inside */
   text-align: center;
  }

  .stats-card li {
    text-align: center;         /* center text for mobile */
    margin-bottom: 15px;
  }

  .stats-card .h1 {
    font-size: 1.2rem;          /* smaller text size for phones */
  }
}




.stats-card .card-text > * { color: var(--white); }



    .rowteam {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      justify-content: center;
      
    }

    .colteam {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      overflow: hidden;
      flex: 1 1 calc(25% - 20px); /* 4 cards per row on large screens */
      max-width: 300px;
      transition: transform 0.3s ease;
      height: 400px;
      box-shadow: 0 2px 6px rgba(254, 198, 86, 0.906);
    }

    .colteam:hover {
      transform: translateY(-5px);
    }

    .colteam img {
      width: 100%;
      height: 330px;
      object-fit: cover;
    }

    .card-text {
      padding: 7px;
    }

    .card-text h3 {
      margin: 0 0 2px;
      font-size: 1.9rem;
      text-align: center;
    }

    .card-text p {
      font-size: 1.3rem;
      font-weight: 300;
      color: rgb(79, 0, 16);
      text-align: center;
    }

    /* Media Queries */
    @media (max-width: 1024px) {
      .colteam {
        flex: 1 1 calc(50% - 20px); /* 2 cards per row on tablets */
      }
    }

    @media (max-width: 600px) {
      .colteam {
        flex: 1 1 100%; /* 1 card per row on mobile */
      }
    }






/*-----------------------------------*\
  #PROJECT
\*-----------------------------------*/


.project { background-color: var(--cultured); }


.project :is(.section-subtitle, .section-subtitle1, .section-title1, .section-subtitle2, .section-title) { text-align: center; }


.project .section-title { margin-block-end: 50px; }


.project-card {
  background-color: var(--white);
  border-radius: var(--radius-8);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  height: 90%;
}


.project-card .card-content { padding: 25px; }


.project-card .card-title { transition: var(--transition-1); }


.project-card .card-title:is(:hover, :focus-visible) { color: var(--violet-blue-crayola); }


.project-card .card-text { margin-block: 16px 20px; }


.project-card .card-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


.project-card .card-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--cadet-blue-crayola);
  font-size: var(--fs-8);
}
 


/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 980px) {
  

  .section-subtitle1{
    margin-top: 30px;


  }
  .headerss{
    margin-top: 30px;
  }
  .faq{
    color: #000b84;
    float: left;
    font-size: 2rem;
    text-align: center;
  }
}



@media screen and (max-width: 768px) {


  .headerss{
    margin-top: 40px;
  }
  .faq{
    color: #000b84;
    float: left;
    font-size: 1rem;
    text-align: center;
  }
}

/*------------PRODUCTS----------------*/


.card-container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}


 /* Tablet-specific adjustments */
 @media (max-width: 1024px) {
  .card-container {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row on tablets */
  }
}


/* Mobile adjustments */
@media (max-width: 600px) {
  .card-container {
    grid-template-columns: 1fr; /* single column on small screens */
  }
}


.cardprod {
  width: 325px;
  border: #931212 solid 0.15rem;
  background-color: hsl(49, 65%, 93%);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  text-align: left;
  border-radius: 8px;
  overflow: hidden;
  margin: 20px;
 
}


.cardtitleprod{
  color: #0b114b;
  font-weight: var(--fw-700);
  font-size: 23px;
  margin-bottom: 8px;
  margin-left: 6px;
}


.cardtextprod{
color: #666;
font-size: 13px;
line-height: 1.3;
margin-left: 6px;
}


.cardprodimg{
 width: 100%;
 height: 265px;
}


/* Responsive columns - one column layout (vertical) on small screens
@media screen and (max-width: 600px) {
  .colprod {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}*/


.btnprod{
display: inline-block;
padding: 8px 16px;
background-color: #931212;
text-decoration: none;
border-radius: 4px;
margin-top: 16px;
padding: 3px;
color: #fff;
border: #000 solid 0.1rem;
text-align: center;
cursor: pointer;
margin-bottom: 10px;
padding: 8px;
margin-left: 10px;
}






/*-----------------------------------*\
  #CTA
\*-----------------------------------*/


.cta { background-color: var(--charcoal); }


.cta .container {
  padding-block: 40px 30px;
  border-block-end: 1px solid var(--cadet-blue-crayola_a20);
}


.cta .section-title {
  color: var(--white);
  margin-block-end: 30px;
}


.cta .btn {
  background-color: var(--violet-blue-crayola);
  color: var(--white);
  border: none;
}










/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/


.footer {
  background-color: var(--charcoal);
  padding-block: 40px 100px;
  color: var(--light-gray);
  padding-bottom: 40px;
}


.footer-brand .footer-text { margin-block: 20px; }


.footer .social-list { color: var(--white); }


.footer-list-title {
  color: var(--white);
  margin-block-end: 16px;
}


.footer-link {
  padding-block: 4px;
  transition: var(--transition-1);
}


.footer-link:is(:hover, :focus-visible) { color: var(--violet-blue-crayola); }


.mylink:is(:hover, :focus-visible) { color: var(--violet-blue-crayola); }


.input-wrapper {
  position: relative;
  margin-block-start: 25px;
}


.input-field {
  background-color: var(--white_a3);
  color: var(--light-gray);
  font-size: var(--fs-7);
  padding: 12px 16px;
  border: 1px solid var(--dark-cornflower-blue_a7);
  border-radius: var(--radius-6);
  box-shadow: var(--shadow-3);
  outline: none;
}


.input-field::placeholder { color: inherit; }


.submit-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 0 var(--radius-6) var(--radius-6) 0;
  background-color: var(--violet-blue-crayola);
  color: var(--white);
  padding-inline: 24px;
  font-weight: var(--fw-700);
}










/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/


/**
 * responsive for large than 575px screen
 */


@media (min-width: 575px) {


  /**
   * REUSED STYLE
   */


  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }






  /**
   * PROJECTS
   */


  .project-card .card-content { padding: 40px; }


}










/**
 * responsive for large than 768px screen
 */


@media (min-width: 768px) {


  /**
   * CUSTOM PROPERTY
   */


  :root {


    /**
     * spacing
     */


    --section-padding: 120px;


  }






  /**
   * REUSED STYLE
   */


  .container { max-width: 720px; }


  .grid-list { grid-template-columns: 1fr 1fr; }






  /**
   * HEADER
   */


  .header .btn {
    display: block;
    margin-inline-start: auto;
    padding: 8px 20px;
  }


  .header.active .btn {
    background-color: var(--violet-blue-crayola);
    border-color: var(--violet-blue-crayola);
    color: var(--white);
  }






  /**
   * HERO
   */


  .hero-content {
    max-width: 85%;
    margin-inline: auto;
  }


  .hero-text { --fs-5: 2rem; }






  /**
   * SERVICE
   */


  .service .section-title {
    max-width: 30ch;
    margin-inline: auto;
  }






  /**
   * ABOUT
   */


  .about .container {
    grid-template-columns: 1fr 0.7fr;
    align-items: center;
  }






  /**
   * FEATURE
   */


  .feature .container {
    grid-template-columns: 0.7fr 1fr;
    align-items: center;
  }


  .feature-banner { order: 1; }


}


.w-100 { width: 75%; }


.w-1000 {
  opacity: 1;
  float: left;
  display: block;
  width: 85%;
  height: 400px;
  transition: .5s ease;
  backface-visibility: hidden;
}


.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}


.feature-banner:hover .w-1000 {
  opacity: 0.3;
}


.feature-banner:hover .middle {
  opacity: 1;
}


.textlink {
  background-color: #04AA6D;
  color: #000;
  font-size: 10px;
  display: block;
  padding: 10px;
}






/**
 * responsive for large than 992px screen
 */


@media (min-width: 992px) {


  /**
   * REUSED STYLE
   */


  .container { max-width: 960px; }






  /**
   * HEADER
   */


  .nav-open-btn,
  .navbar > *:not(.navbar-list),
  .overlay { display: none; }


  .navbar,
  .navbar.active {
    all: unset;
    display: block;
    margin-inline: auto 24px;
  }


  .navbar-list {
    display: flex;
    gap: 30px;
  }


  .navbar-link {
    color: var(--white);
    transition: var(--transition-1);
  }


  .navbar-link:is(:hover, :focus-visible) { opacity: 0.7; }


  .header.active .navbar-link { color: var(--charcoal); }


  .header.active .navbar-link:is(:hover, :focus-visible) {
    opacity: 1;
    color: var(--violet-blue-crayola);
  }
 


  .header .btn { margin-inline-start: 0; }
/*---------for others------*/
  .navbar-link2 {
    color: #000;
    transition: var(--transition-1);
  }


  .navbar-link2:is(:hover, :focus-visible) { opacity: 0.7; }


  .header.active .navbar-link2 { color: var(--charcoal); }


  .header.active .navbar-link2:is(:hover, :focus-visible) {
    opacity: 1;
    color: var(--violet-blue-crayola);
  }


  /**
   * HERO
   */


  .hero {
    padding-block-start: calc(var(--section-padding) + 50px);
    text-align: left;
  }


  .hero .container {
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
  }


  .hero-content {
    max-width: unset;
    margin-inline: 0;
  }


  .btn-wrapper { justify-content: flex-start; }






  /**
   * STATS
   */


  .stats-card { grid-template-columns: repeat(4, 1fr); }






  /**
   * PROJECT
   */


  .project .section-title {
    max-width: 32ch;
    margin-inline: auto;
  }






  /**
   * CTA
   */


  .cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }


  .cta .btn { min-width: max-content; }


  .cta .section-title {
    max-width: 30ch;
    margin-block-end: 0;
  }






  /**
   * FOOTER
   */


  .footer .grid-list { grid-template-columns: repeat(4, 1fr); }


}










/**
 * responsive for large than 1200px screen
 */


@media (min-width: 1200px) {


  /**
   * REUSED STYLE
   */


  .container { max-width: 1140px; }






  /**
   * HERO
   */


  .hero-text { padding-inline-end: 100px; }






  /**
   * SERVICE
   */


  .service .grid-list { grid-template-columns: repeat(4, 1fr); }






  /**
   * STATS
   */


  .stats .container { max-width: 58%; }


  .stats-card { padding: 60px; }


  .stats-card:hover{
    transform: scale(1.5);
    -webkit-transform: scale(0 .5s);
    -ms-transform: scale(1.5);
  }






  /**
   * PROJECT
   */


  .project .grid-list { grid-template-columns: repeat(3, 1fr); }




/*---------- CONTACTUS PG. -----------
.div2{
background-color: #fbf5e0;
width: 510px;
float: left;
padding: 42px;
border-radius: 5px;
text-align: center;
}
.div2 h2{
  color: #0b114b;
  font-size: 3rem;
  font-weight: 110;
}
.div2 hr{
  border: none;
  width: 100px;
  height: 5px;
  background-color: #d73205;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  align-items: center;
  align-self: center;
  margin-left: 160px;
}
.incon{
width: 100%;
padding: 10px;
border: none;
border: none;
border-bottom: 2px solid #777777;
margin-bottom: 20px;
font-size: 16px;
outline: none;
}
.div2 textarea{
  height: 100px;
  background-color: #fbf5e0;
}
.incon:focus{
  border: 2px solid #ff994f;
}
.incon::placeholder{
  color: #a9a9a9;
}
.contact-container{
  margin: 0;
  padding: 0;
  height: 120vh;
  display: flex;
  align-items: center;
  justify-content: space-evenly;


}
.div1{
background-color: rgb(207, 226, 241);
width: 45%;
float: right;
}
.div1 h3{
  color: #0c0475;
  font-size: 4rem;
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
.div1 button{
  background-color: rgb(239, 6, 6);
  color: #ffffff;
  padding: 6px;
  cursor: pointer;
  border: solid black 1px;
  border-radius: 6px;
  margin: 10px;
}
.div1 p{
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}-----------------*/






.faq{
  align-content: center;
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  color: #0c0475;
  justify-content: center;
  align-items: center;
  display: flex;
  margin-bottom: -40px;
  margin-top: 20px;
}


.faq button{
  align-items: center;
  background-color: #eb3030;
  color: #fff;
  width: 200px;
  height: 45px;
  text-align: center;
  justify-content: center;
  margin-left: 10px;
  font-size: 16px;
  cursor: pointer;


}


  /**
   * FOOTER
   */


  address.footer-text {
    padding-inline-end: 100px;
    margin-block-end: 16px;
  }


}




/**
 * responsive for large than 1400px screen
 */


@media (min-width: 1400px) {


  /**
   * REUSED STYLE
   */


  .container { max-width: 1320px; }


 


  /**
   * FEATURE
   */


  .feature-list { grid-template-columns: 1fr 1fr; }


}




.contactUs{
  position: relative;
  width: 100%;
  padding: 40px 100px;
}
.contactUs .contitle{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
}
.contactUs .contitle h2{
color: #000;
font-weight: 800;
}
.conbox{
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows:5fr 4fr;
  grid-template-areas: "form info" "form map";
  grid-gap: 20px;
  margin-top: 20px;
}
.form{
  grid-area: form;
}
.info{
  grid-area: info;
}
.map{
  grid-area: map;
}
.contact{
  padding: 40px;
  background-color: #fff;
  box-shadow: 0 5px 35px rgba(0,0,0,0.15);
}
.contact h3{
  color: #0e3959;
  font-weight: 600;
  font-size: 1.5em;  
  margin-bottom: 10px;
}


/*form*/
.formbox{
  position: relative;
  width: 100%;
}
.formbox .row50{
  display: flex;
  gap: 20px;
}
.inputbox{
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  width: 50%;
}
.formbox .row100 .inputbox{
  width: 100%;
}
.input span{
  color: #18b7ff;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 500;
}
.inputbox input{
  padding: 10px;
  font-size: 1.1em;
  outline: none;
  border: 1px solid #333;
}
.row100 textarea{
 
  font-size: 1.1em;
  outline: none;
  border: 1px solid #333;
  resize: none;
  height: 170px;
  margin-bottom: 10px;
  width: 100%;
}
.inputbox input[type="submit"]{
  background: #04AA6D;
  color: #fff;
  border: none;
  font-size: 1.1em;
  max-width: 120px;
  font-weight: 500;
  cursor: pointer;
  padding: 0 15px;
}
.inputbox::placeholder{
  color: #999;
}
.row100::placeholder{
  color: #999;
}
.info{
  background: #0E3959;
}
.info h3{
  color: #fff;
}
.info .infobox div{
   display: flex;
   align-items: center;
   margin-bottom: 10px;  
}
.info .infobox div span{
  min-width: 40px;
  height: 40px;
  color: #fff;
  background: #18b7ff;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  border-radius: 50%;
  margin-right: 15px;
}
.info .infobox div img{
  align-items: center;
  align-self: center;
  margin-left: 7px;
  margin-top: 6px;
}


.info .infobox div a{
  color: #fff;
  text-decoration: none;
  font-size: 1em;
}
.info .infobox div p{
  color: #fff;
  text-decoration: none;
  font-size: 1em;
}
.info .infobox div a:hover{
  color: #f4e96f;
  text-decoration: none;
  font-size: 1em;
}
.info .infobox div p:hover{
  color: #f4e96f;
  text-decoration: none;
  font-size: 1em;
}
.faqformbtn:hover{
  color: #f4e96f;
 cursor: pointer;
}
.map{
  padding: 0;
}
.map iframe{
  width: 100%;
  height: 100%;
}
.btncontact{
  border: none !important;
  cursor: pointer;
  background-color: #32cd9c;
  margin: 15px 0;
  font-size: 16px;
  width: 55%;
  padding: 14px;
  align-content: center;


}
.btncontact:hover{
  background: linear-gradient(270deg, #ff994f, #fa6d86);
  color: #fff;
}


@media (max-width: 991px)
{


  .contactUs{
    padding: 20px;
  }
  .conbox{
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
    "form"
    "info"
    "map";
  }
  .map{
    min-height: 300px;
    padding: 0;
  }
  .inputbox{
width: 100%;
  }
  .formbox .row50{
    display: flex;
    gap: 0;
    flex-direction: column;
  }
  .contact{
    padding: 30px;
  }
}




/*--------------calculator---*/
.container-cal{
  background: #004d4d;
  display: grid;
  place-items: center;
  height: 100vh;
  margin-bottom: -70px;
  font-family: "Jost", sans serif;
}
.h2{
  text-align: center;
}
.calculator{
  width: 90%;
  max-width: 420px;
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 10px 15px rgba(0,0,0,0.25);
  display: grid;
  gap: 1rem;
}


.calculator div{
  display: flex;
  align-items: centre;
  gap: 1rem;
}
.calculator label{
  flex: 0 1 120px;
  font-weight: 600;
}
.calculator input{
  flex: 1;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  outline-color: #555;
  font-size: 1.25rem;
  text-align: center;
}
.calculator button{
  width: 50%;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  padding: 10px;
  background: #00a1a3;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.calculator button[type="reset"] {
  background: #444;
}
.calculator button:hover{
  filter: brightness(120%);
}


.outputcal #bmi{
  font-size: 4rem;
}
.outputcal #desc strong{
  text-transform: uppercase;
}
.w-10001 {
  float: left;
  display: block;
  width: 45%;
  height: 265px;
}
.feature-listcal {
  display: grid;
  gap: 7px;
  float: left;
width: 80%;
}

/*-----GIT CODE FOR PHONE CODES---*/

.iti {
  position: relative;
  display: inline-block; }
  .iti * {
    box-sizing: border-box;
    -moz-box-sizing: border-box; }
  .iti__hide {
    display: none; }
  .iti__v-hide {
    visibility: hidden; }
  .iti input, .iti input[type=text], .iti input[type=tel] {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 36px;
    margin-right: 0; }
  .iti__flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px; }
  .iti__selected-flag {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 6px 0 8px; }
  .iti__arrow {
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #555; }
    .iti__arrow--up {
      border-top: none;
      border-bottom: 4px solid #555; }
  .iti__country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    background-color: white;
    border: 1px solid #CCC;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch; }
    .iti__country-list--dropup {
      bottom: 100%;
      margin-bottom: -1px; }
    @media (max-width: 500px) {
      .iti__country-list {
        white-space: normal; } }
  .iti__flag-box {
    display: inline-block;
    width: 20px; }
  .iti__divider {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #CCC; }
  .iti__country {
    padding: 5px 10px;
    outline: none; }
  .iti__dial-code {
    color: #999; }
  .iti__country.iti__highlight {
    background-color: rgba(0, 0, 0, 0.05); }
  .iti__flag-box, .iti__country-name, .iti__dial-code {
    vertical-align: middle; }
  .iti__flag-box, .iti__country-name {
    margin-right: 6px; }
  .iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0; }
  .iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
    right: auto;
    left: 0; }
  .iti--allow-dropdown .iti__flag-container:hover {
    cursor: pointer; }
    .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
      background-color: rgba(0, 0, 0, 0.05); }
  .iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
  .iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
    cursor: default; }
    .iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
    .iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
      background-color: transparent; }
  .iti--separate-dial-code .iti__selected-flag {
    background-color: rgba(0, 0, 0, 0.05); }
  .iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px; }
  .iti--container {
    position: absolute;
    top: -1000px;
    left: -1000px;
    z-index: 1060;
    padding: 1px; }
    .iti--container:hover {
      cursor: pointer; }

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed; }

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%; }

.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em; }

.iti__flag {
  width: 20px; }
  .iti__flag.iti__be {
    width: 18px; }
  .iti__flag.iti__ch {
    width: 15px; }
  .iti__flag.iti__mc {
    width: 19px; }
  .iti__flag.iti__ne {
    width: 18px; }
  .iti__flag.iti__np {
    width: 13px; }
  .iti__flag.iti__va {
    width: 15px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
      background-size: 5652px 15px; } }
  .iti__flag.iti__ac {
    height: 10px;
    background-position: 0px 0px; }
  .iti__flag.iti__ad {
    height: 14px;
    background-position: -22px 0px; }
  .iti__flag.iti__ae {
    height: 10px;
    background-position: -44px 0px; }
  .iti__flag.iti__af {
    height: 14px;
    background-position: -66px 0px; }
  .iti__flag.iti__ag {
    height: 14px;
    background-position: -88px 0px; }
  .iti__flag.iti__ai {
    height: 10px;
    background-position: -110px 0px; }
  .iti__flag.iti__al {
    height: 15px;
    background-position: -132px 0px; }
  .iti__flag.iti__am {
    height: 10px;
    background-position: -154px 0px; }
  .iti__flag.iti__ao {
    height: 14px;
    background-position: -176px 0px; }
  .iti__flag.iti__aq {
    height: 14px;
    background-position: -198px 0px; }
  .iti__flag.iti__ar {
    height: 13px;
    background-position: -220px 0px; }
  .iti__flag.iti__as {
    height: 10px;
    background-position: -242px 0px; }
  .iti__flag.iti__at {
    height: 14px;
    background-position: -264px 0px; }
  .iti__flag.iti__au {
    height: 10px;
    background-position: -286px 0px; }
  .iti__flag.iti__aw {
    height: 14px;
    background-position: -308px 0px; }
  .iti__flag.iti__ax {
    height: 13px;
    background-position: -330px 0px; }
  .iti__flag.iti__az {
    height: 10px;
    background-position: -352px 0px; }
  .iti__flag.iti__ba {
    height: 10px;
    background-position: -374px 0px; }
  .iti__flag.iti__bb {
    height: 14px;
    background-position: -396px 0px; }
  .iti__flag.iti__bd {
    height: 12px;
    background-position: -418px 0px; }
  .iti__flag.iti__be {
    height: 15px;
    background-position: -440px 0px; }
  .iti__flag.iti__bf {
    height: 14px;
    background-position: -460px 0px; }
  .iti__flag.iti__bg {
    height: 12px;
    background-position: -482px 0px; }
  .iti__flag.iti__bh {
    height: 12px;
    background-position: -504px 0px; }
  .iti__flag.iti__bi {
    height: 12px;
    background-position: -526px 0px; }
  .iti__flag.iti__bj {
    height: 14px;
    background-position: -548px 0px; }
  .iti__flag.iti__bl {
    height: 14px;
    background-position: -570px 0px; }
  .iti__flag.iti__bm {
    height: 10px;
    background-position: -592px 0px; }
  .iti__flag.iti__bn {
    height: 10px;
    background-position: -614px 0px; }
  .iti__flag.iti__bo {
    height: 14px;
    background-position: -636px 0px; }
  .iti__flag.iti__bq {
    height: 14px;
    background-position: -658px 0px; }
  .iti__flag.iti__br {
    height: 14px;
    background-position: -680px 0px; }
  .iti__flag.iti__bs {
    height: 10px;
    background-position: -702px 0px; }
  .iti__flag.iti__bt {
    height: 14px;
    background-position: -724px 0px; }
  .iti__flag.iti__bv {
    height: 15px;
    background-position: -746px 0px; }
  .iti__flag.iti__bw {
    height: 14px;
    background-position: -768px 0px; }
  .iti__flag.iti__by {
    height: 10px;
    background-position: -790px 0px; }
  .iti__flag.iti__bz {
    height: 14px;
    background-position: -812px 0px; }
  .iti__flag.iti__ca {
    height: 10px;
    background-position: -834px 0px; }
  .iti__flag.iti__cc {
    height: 10px;
    background-position: -856px 0px; }
  .iti__flag.iti__cd {
    height: 15px;
    background-position: -878px 0px; }
  .iti__flag.iti__cf {
    height: 14px;
    background-position: -900px 0px; }
  .iti__flag.iti__cg {
    height: 14px;
    background-position: -922px 0px; }
  .iti__flag.iti__ch {
    height: 15px;
    background-position: -944px 0px; }
  .iti__flag.iti__ci {
    height: 14px;
    background-position: -961px 0px; }
  .iti__flag.iti__ck {
    height: 10px;
    background-position: -983px 0px; }
  .iti__flag.iti__cl {
    height: 14px;
    background-position: -1005px 0px; }
  .iti__flag.iti__cm {
    height: 14px;
    background-position: -1027px 0px; }
  .iti__flag.iti__cn {
    height: 14px;
    background-position: -1049px 0px; }
  .iti__flag.iti__co {
    height: 14px;
    background-position: -1071px 0px; }
  .iti__flag.iti__cp {
    height: 14px;
    background-position: -1093px 0px; }
  .iti__flag.iti__cr {
    height: 12px;
    background-position: -1115px 0px; }
  .iti__flag.iti__cu {
    height: 10px;
    background-position: -1137px 0px; }
  .iti__flag.iti__cv {
    height: 12px;
    background-position: -1159px 0px; }
  .iti__flag.iti__cw {
    height: 14px;
    background-position: -1181px 0px; }
  .iti__flag.iti__cx {
    height: 10px;
    background-position: -1203px 0px; }
  .iti__flag.iti__cy {
    height: 14px;
    background-position: -1225px 0px; }
  .iti__flag.iti__cz {
    height: 14px;
    background-position: -1247px 0px; }
  .iti__flag.iti__de {
    height: 12px;
    background-position: -1269px 0px; }
  .iti__flag.iti__dg {
    height: 10px;
    background-position: -1291px 0px; }
  .iti__flag.iti__dj {
    height: 14px;
    background-position: -1313px 0px; }
  .iti__flag.iti__dk {
    height: 15px;
    background-position: -1335px 0px; }
  .iti__flag.iti__dm {
    height: 10px;
    background-position: -1357px 0px; }
  .iti__flag.iti__do {
    height: 14px;
    background-position: -1379px 0px; }
  .iti__flag.iti__dz {
    height: 14px;
    background-position: -1401px 0px; }
  .iti__flag.iti__ea {
    height: 14px;
    background-position: -1423px 0px; }
  .iti__flag.iti__ec {
    height: 14px;
    background-position: -1445px 0px; }
  .iti__flag.iti__ee {
    height: 13px;
    background-position: -1467px 0px; }
  .iti__flag.iti__eg {
    height: 14px;
    background-position: -1489px 0px; }
  .iti__flag.iti__eh {
    height: 10px;
    background-position: -1511px 0px; }
  .iti__flag.iti__er {
    height: 10px;
    background-position: -1533px 0px; }
  .iti__flag.iti__es {
    height: 14px;
    background-position: -1555px 0px; }
  .iti__flag.iti__et {
    height: 10px;
    background-position: -1577px 0px; }
  .iti__flag.iti__eu {
    height: 14px;
    background-position: -1599px 0px; }
  .iti__flag.iti__fi {
    height: 12px;
    background-position: -1621px 0px; }
  .iti__flag.iti__fj {
    height: 10px;
    background-position: -1643px 0px; }
  .iti__flag.iti__fk {
    height: 10px;
    background-position: -1665px 0px; }
  .iti__flag.iti__fm {
    height: 11px;
    background-position: -1687px 0px; }
  .iti__flag.iti__fo {
    height: 15px;
    background-position: -1709px 0px; }
  .iti__flag.iti__fr {
    height: 14px;
    background-position: -1731px 0px; }
  .iti__flag.iti__ga {
    height: 15px;
    background-position: -1753px 0px; }
  .iti__flag.iti__gb {
    height: 10px;
    background-position: -1775px 0px; }
  .iti__flag.iti__gd {
    height: 12px;
    background-position: -1797px 0px; }
  .iti__flag.iti__ge {
    height: 14px;
    background-position: -1819px 0px; }
  .iti__flag.iti__gf {
    height: 14px;
    background-position: -1841px 0px; }
  .iti__flag.iti__gg {
    height: 14px;
    background-position: -1863px 0px; }
  .iti__flag.iti__gh {
    height: 14px;
    background-position: -1885px 0px; }
  .iti__flag.iti__gi {
    height: 10px;
    background-position: -1907px 0px; }
  .iti__flag.iti__gl {
    height: 14px;
    background-position: -1929px 0px; }
  .iti__flag.iti__gm {
    height: 14px;
    background-position: -1951px 0px; }
  .iti__flag.iti__gn {
    height: 14px;
    background-position: -1973px 0px; }
  .iti__flag.iti__gp {
    height: 14px;
    background-position: -1995px 0px; }
  .iti__flag.iti__gq {
    height: 14px;
    background-position: -2017px 0px; }
  .iti__flag.iti__gr {
    height: 14px;
    background-position: -2039px 0px; }
  .iti__flag.iti__gs {
    height: 10px;
    background-position: -2061px 0px; }
  .iti__flag.iti__gt {
    height: 13px;
    background-position: -2083px 0px; }
  .iti__flag.iti__gu {
    height: 11px;
    background-position: -2105px 0px; }
  .iti__flag.iti__gw {
    height: 10px;
    background-position: -2127px 0px; }
  .iti__flag.iti__gy {
    height: 12px;
    background-position: -2149px 0px; }
  .iti__flag.iti__hk {
    height: 14px;
    background-position: -2171px 0px; }
  .iti__flag.iti__hm {
    height: 10px;
    background-position: -2193px 0px; }
  .iti__flag.iti__hn {
    height: 10px;
    background-position: -2215px 0px; }
  .iti__flag.iti__hr {
    height: 10px;
    background-position: -2237px 0px; }
  .iti__flag.iti__ht {
    height: 12px;
    background-position: -2259px 0px; }
  .iti__flag.iti__hu {
    height: 10px;
    background-position: -2281px 0px; }
  .iti__flag.iti__ic {
    height: 14px;
    background-position: -2303px 0px; }
  .iti__flag.iti__id {
    height: 14px;
    background-position: -2325px 0px; }
  .iti__flag.iti__ie {
    height: 10px;
    background-position: -2347px 0px; }
  .iti__flag.iti__il {
    height: 15px;
    background-position: -2369px 0px; }
  .iti__flag.iti__im {
    height: 10px;
    background-position: -2391px 0px; }
  .iti__flag.iti__in {
    height: 14px;
    background-position: -2413px 0px; }
  .iti__flag.iti__io {
    height: 10px;
    background-position: -2435px 0px; }
  .iti__flag.iti__iq {
    height: 14px;
    background-position: -2457px 0px; }
  .iti__flag.iti__ir {
    height: 12px;
    background-position: -2479px 0px; }
  .iti__flag.iti__is {
    height: 15px;
    background-position: -2501px 0px; }
  .iti__flag.iti__it {
    height: 14px;
    background-position: -2523px 0px; }
  .iti__flag.iti__je {
    height: 12px;
    background-position: -2545px 0px; }
  .iti__flag.iti__jm {
    height: 10px;
    background-position: -2567px 0px; }
  .iti__flag.iti__jo {
    height: 10px;
    background-position: -2589px 0px; }
  .iti__flag.iti__jp {
    height: 14px;
    background-position: -2611px 0px; }
  .iti__flag.iti__ke {
    height: 14px;
    background-position: -2633px 0px; }
  .iti__flag.iti__kg {
    height: 12px;
    background-position: -2655px 0px; }
  .iti__flag.iti__kh {
    height: 13px;
    background-position: -2677px 0px; }
  .iti__flag.iti__ki {
    height: 10px;
    background-position: -2699px 0px; }
  .iti__flag.iti__km {
    height: 12px;
    background-position: -2721px 0px; }
  .iti__flag.iti__kn {
    height: 14px;
    background-position: -2743px 0px; }
  .iti__flag.iti__kp {
    height: 10px;
    background-position: -2765px 0px; }
  .iti__flag.iti__kr {
    height: 14px;
    background-position: -2787px 0px; }
  .iti__flag.iti__kw {
    height: 10px;
    background-position: -2809px 0px; }
  .iti__flag.iti__ky {
    height: 10px;
    background-position: -2831px 0px; }
  .iti__flag.iti__kz {
    height: 10px;
    background-position: -2853px 0px; }
  .iti__flag.iti__la {
    height: 14px;
    background-position: -2875px 0px; }
  .iti__flag.iti__lb {
    height: 14px;
    background-position: -2897px 0px; }
  .iti__flag.iti__lc {
    height: 10px;
    background-position: -2919px 0px; }
  .iti__flag.iti__li {
    height: 12px;
    background-position: -2941px 0px; }
  .iti__flag.iti__lk {
    height: 10px;
    background-position: -2963px 0px; }
  .iti__flag.iti__lr {
    height: 11px;
    background-position: -2985px 0px; }
  .iti__flag.iti__ls {
    height: 14px;
    background-position: -3007px 0px; }
  .iti__flag.iti__lt {
    height: 12px;
    background-position: -3029px 0px; }
  .iti__flag.iti__lu {
    height: 12px;
    background-position: -3051px 0px; }
  .iti__flag.iti__lv {
    height: 10px;
    background-position: -3073px 0px; }
  .iti__flag.iti__ly {
    height: 10px;
    background-position: -3095px 0px; }
  .iti__flag.iti__ma {
    height: 14px;
    background-position: -3117px 0px; }
  .iti__flag.iti__mc {
    height: 15px;
    background-position: -3139px 0px; }
  .iti__flag.iti__md {
    height: 10px;
    background-position: -3160px 0px; }
  .iti__flag.iti__me {
    height: 10px;
    background-position: -3182px 0px; }
  .iti__flag.iti__mf {
    height: 14px;
    background-position: -3204px 0px; }
  .iti__flag.iti__mg {
    height: 14px;
    background-position: -3226px 0px; }
  .iti__flag.iti__mh {
    height: 11px;
    background-position: -3248px 0px; }
  .iti__flag.iti__mk {
    height: 10px;
    background-position: -3270px 0px; }
  .iti__flag.iti__ml {
    height: 14px;
    background-position: -3292px 0px; }
  .iti__flag.iti__mm {
    height: 14px;
    background-position: -3314px 0px; }
  .iti__flag.iti__mn {
    height: 10px;
    background-position: -3336px 0px; }
  .iti__flag.iti__mo {
    height: 14px;
    background-position: -3358px 0px; }
  .iti__flag.iti__mp {
    height: 10px;
    background-position: -3380px 0px; }
  .iti__flag.iti__mq {
    height: 14px;
    background-position: -3402px 0px; }
  .iti__flag.iti__mr {
    height: 14px;
    background-position: -3424px 0px; }
  .iti__flag.iti__ms {
    height: 10px;
    background-position: -3446px 0px; }
  .iti__flag.iti__mt {
    height: 14px;
    background-position: -3468px 0px; }
  .iti__flag.iti__mu {
    height: 14px;
    background-position: -3490px 0px; }
  .iti__flag.iti__mv {
    height: 14px;
    background-position: -3512px 0px; }
  .iti__flag.iti__mw {
    height: 14px;
    background-position: -3534px 0px; }
  .iti__flag.iti__mx {
    height: 12px;
    background-position: -3556px 0px; }
  .iti__flag.iti__my {
    height: 10px;
    background-position: -3578px 0px; }
  .iti__flag.iti__mz {
    height: 14px;
    background-position: -3600px 0px; }
  .iti__flag.iti__na {
    height: 14px;
    background-position: -3622px 0px; }
  .iti__flag.iti__nc {
    height: 10px;
    background-position: -3644px 0px; }
  .iti__flag.iti__ne {
    height: 15px;
    background-position: -3666px 0px; }
  .iti__flag.iti__nf {
    height: 10px;
    background-position: -3686px 0px; }
  .iti__flag.iti__ng {
    height: 10px;
    background-position: -3708px 0px; }
  .iti__flag.iti__ni {
    height: 12px;
    background-position: -3730px 0px; }
  .iti__flag.iti__nl {
    height: 14px;
    background-position: -3752px 0px; }
  .iti__flag.iti__no {
    height: 15px;
    background-position: -3774px 0px; }
  .iti__flag.iti__np {
    height: 15px;
    background-position: -3796px 0px; }
  .iti__flag.iti__nr {
    height: 10px;
    background-position: -3811px 0px; }
  .iti__flag.iti__nu {
    height: 10px;
    background-position: -3833px 0px; }
  .iti__flag.iti__nz {
    height: 10px;
    background-position: -3855px 0px; }
  .iti__flag.iti__om {
    height: 10px;
    background-position: -3877px 0px; }
  .iti__flag.iti__pa {
    height: 14px;
    background-position: -3899px 0px; }
  .iti__flag.iti__pe {
    height: 14px;
    background-position: -3921px 0px; }
  .iti__flag.iti__pf {
    height: 14px;
    background-position: -3943px 0px; }
  .iti__flag.iti__pg {
    height: 15px;
    background-position: -3965px 0px; }
  .iti__flag.iti__ph {
    height: 10px;
    background-position: -3987px 0px; }
  .iti__flag.iti__pk {
    height: 14px;
    background-position: -4009px 0px; }
  .iti__flag.iti__pl {
    height: 13px;
    background-position: -4031px 0px; }
  .iti__flag.iti__pm {
    height: 14px;
    background-position: -4053px 0px; }
  .iti__flag.iti__pn {
    height: 10px;
    background-position: -4075px 0px; }
  .iti__flag.iti__pr {
    height: 14px;
    background-position: -4097px 0px; }
  .iti__flag.iti__ps {
    height: 10px;
    background-position: -4119px 0px; }
  .iti__flag.iti__pt {
    height: 14px;
    background-position: -4141px 0px; }
  .iti__flag.iti__pw {
    height: 13px;
    background-position: -4163px 0px; }
  .iti__flag.iti__py {
    height: 11px;
    background-position: -4185px 0px; }
  .iti__flag.iti__qa {
    height: 8px;
    background-position: -4207px 0px; }
  .iti__flag.iti__re {
    height: 14px;
    background-position: -4229px 0px; }
  .iti__flag.iti__ro {
    height: 14px;
    background-position: -4251px 0px; }
  .iti__flag.iti__rs {
    height: 14px;
    background-position: -4273px 0px; }
  .iti__flag.iti__ru {
    height: 14px;
    background-position: -4295px 0px; }
  .iti__flag.iti__rw {
    height: 14px;
    background-position: -4317px 0px; }
  .iti__flag.iti__sa {
    height: 14px;
    background-position: -4339px 0px; }
  .iti__flag.iti__sb {
    height: 10px;
    background-position: -4361px 0px; }
  .iti__flag.iti__sc {
    height: 10px;
    background-position: -4383px 0px; }
  .iti__flag.iti__sd {
    height: 10px;
    background-position: -4405px 0px; }
  .iti__flag.iti__se {
    height: 13px;
    background-position: -4427px 0px; }
  .iti__flag.iti__sg {
    height: 14px;
    background-position: -4449px 0px; }
  .iti__flag.iti__sh {
    height: 10px;
    background-position: -4471px 0px; }
  .iti__flag.iti__si {
    height: 10px;
    background-position: -4493px 0px; }
  .iti__flag.iti__sj {
    height: 15px;
    background-position: -4515px 0px; }
  .iti__flag.iti__sk {
    height: 14px;
    background-position: -4537px 0px; }
  .iti__flag.iti__sl {
    height: 14px;
    background-position: -4559px 0px; }
  .iti__flag.iti__sm {
    height: 15px;
    background-position: -4581px 0px; }
  .iti__flag.iti__sn {
    height: 14px;
    background-position: -4603px 0px; }
  .iti__flag.iti__so {
    height: 14px;
    background-position: -4625px 0px; }
  .iti__flag.iti__sr {
    height: 14px;
    background-position: -4647px 0px; }
  .iti__flag.iti__ss {
    height: 10px;
    background-position: -4669px 0px; }
  .iti__flag.iti__st {
    height: 10px;
    background-position: -4691px 0px; }
  .iti__flag.iti__sv {
    height: 12px;
    background-position: -4713px 0px; }
  .iti__flag.iti__sx {
    height: 14px;
    background-position: -4735px 0px; }
  .iti__flag.iti__sy {
    height: 14px;
    background-position: -4757px 0px; }
  .iti__flag.iti__sz {
    height: 14px;
    background-position: -4779px 0px; }
  .iti__flag.iti__ta {
    height: 10px;
    background-position: -4801px 0px; }
  .iti__flag.iti__tc {
    height: 10px;
    background-position: -4823px 0px; }
  .iti__flag.iti__td {
    height: 14px;
    background-position: -4845px 0px; }
  .iti__flag.iti__tf {
    height: 14px;
    background-position: -4867px 0px; }
  .iti__flag.iti__tg {
    height: 13px;
    background-position: -4889px 0px; }
  .iti__flag.iti__th {
    height: 14px;
    background-position: -4911px 0px; }
  .iti__flag.iti__tj {
    height: 10px;
    background-position: -4933px 0px; }
  .iti__flag.iti__tk {
    height: 10px;
    background-position: -4955px 0px; }
  .iti__flag.iti__tl {
    height: 10px;
    background-position: -4977px 0px; }
  .iti__flag.iti__tm {
    height: 14px;
    background-position: -4999px 0px; }
  .iti__flag.iti__tn {
    height: 14px;
    background-position: -5021px 0px; }
  .iti__flag.iti__to {
    height: 10px;
    background-position: -5043px 0px; }
  .iti__flag.iti__tr {
    height: 14px;
    background-position: -5065px 0px; }
  .iti__flag.iti__tt {
    height: 12px;
    background-position: -5087px 0px; }
  .iti__flag.iti__tv {
    height: 10px;
    background-position: -5109px 0px; }
  .iti__flag.iti__tw {
    height: 14px;
    background-position: -5131px 0px; }
  .iti__flag.iti__tz {
    height: 14px;
    background-position: -5153px 0px; }
  .iti__flag.iti__ua {
    height: 14px;
    background-position: -5175px 0px; }
  .iti__flag.iti__ug {
    height: 14px;
    background-position: -5197px 0px; }
  .iti__flag.iti__um {
    height: 11px;
    background-position: -5219px 0px; }
  .iti__flag.iti__un {
    height: 14px;
    background-position: -5241px 0px; }
  .iti__flag.iti__us {
    height: 11px;
    background-position: -5263px 0px; }
  .iti__flag.iti__uy {
    height: 14px;
    background-position: -5285px 0px; }
  .iti__flag.iti__uz {
    height: 10px;
    background-position: -5307px 0px; }
  .iti__flag.iti__va {
    height: 15px;
    background-position: -5329px 0px; }
  .iti__flag.iti__vc {
    height: 14px;
    background-position: -5346px 0px; }
  .iti__flag.iti__ve {
    height: 14px;
    background-position: -5368px 0px; }
  .iti__flag.iti__vg {
    height: 10px;
    background-position: -5390px 0px; }
  .iti__flag.iti__vi {
    height: 14px;
    background-position: -5412px 0px; }
  .iti__flag.iti__vn {
    height: 14px;
    background-position: -5434px 0px; }
  .iti__flag.iti__vu {
    height: 12px;
    background-position: -5456px 0px; }
  .iti__flag.iti__wf {
    height: 14px;
    background-position: -5478px 0px; }
  .iti__flag.iti__ws {
    height: 10px;
    background-position: -5500px 0px; }
  .iti__flag.iti__xk {
    height: 15px;
    background-position: -5522px 0px; }
  .iti__flag.iti__ye {
    height: 14px;
    background-position: -5544px 0px; }
  .iti__flag.iti__yt {
    height: 14px;
    background-position: -5566px 0px; }
  .iti__flag.iti__za {
    height: 14px;
    background-position: -5588px 0px; }
  .iti__flag.iti__zm {
    height: 14px;
    background-position: -5610px 0px; }
  .iti__flag.iti__zw {
    height: 10px;
    background-position: -5632px 0px; }

.iti__flag {
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url("../images/flags.png");
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
      background-image: url("../images/flags@2x.png"); } }

.iti__flag.iti__np {
  background-color: transparent; }


  


















