*{
  font-family: sans-serif;
  font-weight: lighter;
}

body{
  background: #F5F5F5;
}


.container{
  margin: 0px 40px;
  padding: 30px;

}


.breadcrump{
  width: 100%;
  background: url("..//images/jefire_cover_page3.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}
.breadcrump-bg{
  background: white;
  opacity: .8;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

@media only screen and (max-width: 768px) {

  body{
    background: white;
  }
  .container{
    margin: 0px;
    padding: 0px;
  }
}




/*---PRE-LOADER---*/

.loader-container{
  width: 100%;
  height: 100%;
  background: white;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;

}

.loader{
  width: 200px;
  height: 200px;
  border: 5px solid;
  color:#2782E8;
  border-radius: 50%;
  border-top-color: transparent;
  animation: Loader 1.2s linear infinite;
  z-index: 2;
}

.loader-image{
  width: 600px;
  height: 600px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.loader-image img{
  width: 300px;
}

@keyframes Loader {

  to{
    transform: rotate(360deg);
  }

}


/*----END PRE-LOADER---*/




.top-bar
{
    width: 100%;
    padding: 5px 0px;
    text-align: center;
    background: red;
}


.top-bar h6{
  color:#fff;
  font-size:16px;
  margin:auto;
  padding: 5px 0px;
  font-style: oblique;
  font-weight: 200;
  font-stretch: condensed;

}

@media only screen and (max-width: 768px) {

  .top-bar h6{
    font-size:12px;

  }
}

.header-logo{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: white;
}

.logo-section{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.section-left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 100px;
  width: 100%;

}

.section-right{
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
  padding-right: 100px;

}

.logo-section p{
  font-size: 14px;
  padding: 5px;
  color: #2782E8;
}

.logo-section span{

  font-size: 18px;
  font-weight: bold;
  color: red;

}

.logo-section i{
  padding-left: 5px;
  font-size: 25px;
  color: #2782E8;
  cursor: pointer;
  transition: .5s;
}

.logo-section i:hover{
  padding-bottom: 5px;
  font-size: 30px;
  color: red;
}

.section-left i{
  color: green;
}

.main-logo{

  width: 100%;
  margin: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;

}

.main-logo img
{
  width: 300px;
  padding: 20px;
}

.navbar-button{
  width: 100%;
  padding: 10px;
  display: none;
}

.navbar-button i{
    font-size: 20px;
    background: red;
    color: white;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: .5s;

}

.navbar-button i:hover{
    padding: 10px 20px;
    font-size: 20px;
    background: red;
    color: white;

}

@media only screen and (max-width: 768px) {

  .header-logo{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

  }

  .logo-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

  }

  .section-left{
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

  }
  .section-right{
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

  }

  .logo-section p{
    font-size: 12px;
  }

  .logo-section span{

    font-size: 14px;

  }



  .logo-section i{
    font-size: 20px;
    transition: .5s;
  }

  .logo-section i:hover{
    font-size: 25px;
  }

  .section-left i{
    color: green;
  }

  .navbar-button{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.navbar {
  overflow: hidden;
  background-color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
}



.navbar a {
  float: left;
  font-size: 16px;
  color: #1a75ff;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.navbar a:hover {
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: #1a75ff;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  cursor: pointer;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #1a75ff;
  color: white;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 9999;
}

.dropdown-content a {
  float: none;
  color: #1a75ff;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: red;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media only screen and (max-width: 768px) {

  .navbar {
    display: none;

  }

  .active{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .dropdown-content {
    background: #F5F5F5;
    position: relative;
    justify-content: center;
  }

  .dropdown-content a {
    text-align: center;
  }

  .dropdown .dropbtn {
  width: 100%;
  }

}

.why-you-choose{
  padding: 50px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-image: url("../images/jetfire-why-choose-us-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode:soft-light;
    background-color: #9E0A0A;
}

.why-you-choose-div{
  width: 50%;
  padding: 20px;
  background: #9E0A0A;
}

.why-you-choose img{
  width: 100%;
  padding: 10px;
}

.why-you-choose h3{
  font-size: 30px;
  padding: 10px;
  color: white;
  margin-bottom: 0;
}

.why-you-choose strong{
  font-weight: bold;
}

.why-you-choose p{
  font-size: 16px;
  font-weight: lighter;
  line-height: 20px;
  text-align: justify;
  color: white;
}

.why-you-choose-benefits{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.why-you-choose-benefits h3{
  padding: 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  color: white;

}

.why-you-choose-benefits h3:hover{
  color: #1a75ff;

}

.why-you-choose-benefits i{
  padding: 5px;
  font-size: 22px;
  border: 2px solid white;
  border-radius: 360px;
  color: white;

}


@media only screen and (max-width: 1366px) {

  .why-you-choose{
    padding: 50px 50px;
      display: flex;
      flex-direction: column;
  }

  .why-you-choose-div{
    width: 100%;
  }

  .why-you-choose h3{
    text-align: center;
  }



  .why-you-choose-benefits h3{
    padding: 10px;
    font-size: 10px;

  }

  .why-you-choose-benefits h3:hover{
    color: #1a75ff;

  }

  .why-you-choose-benefits i{
    font-size: 20px;

  }

}

@media only screen and (max-width: 768px) {

  .why-you-choose{
    padding: 50px 0px;
      display: flex;
      flex-direction: column;
  }
}


.services{
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
}

.services h3{
  font-size: 30px;
  padding: 10px;
}

.services strong{
  font-weight: bold;
}

.service-content{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.services-div{
  width: 25%;
  padding: 10px;
  margin: 10px;

}

.services-div img{
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.services-div a{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a75ff;
  color: white;
  padding: 10px 20px;
  width: 100%;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
}

.services-div a:hover{
  text-decoration: none;
  background: #C61515;
}



@media only screen and (max-width: 768px) {

  .services{
    padding: 50px;
  }

  .services h3{
    font-size: 30px;
    padding: 10px;
  }

  .services strong{
    font-weight: bold;
  }

  .service-content{
    flex-direction: column;
  }

  .services-div{
    width: 100%;
    margin: 10px;

  }


}


.contact-us{
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("../images/jetfire-why-choose-us-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode:screen;
  background-color: #12619F;
}

.contact-us-head{
  width: 80%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #1a75ff;
}

.contact-us-head h4{
  padding: none;
  font-size: 25px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 0;
  color: white;
}

.contact-us-head p{
  font-size: 16px;
  padding: 0px 30px;
  text-align: center;
  color: white;
  margin-bottom: 10px;
}

.contact-us a{
  background: white;
  color: #1a75ff;
  padding: 10px 20px;
  margin-top: 10px;
  text-align: center;
  text-decoration: none;
}

.contact-us a:hover{
  background: #12619F;
  color: white;
  text-decoration: none;
}


@media only screen and (max-width: 768px) {


  .contact-us-head h4{
    font-size: 22px;
  }

  .contact-us-head p{
    font-size: 14px;
    text-align: justify;
  }

}



/*---- FOOTER ---*/


.footer{
  padding: 20px;
    background: white;
}

.footer-content{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;


}
.footer-section-menu{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  text-align: left;
}

.footer-section{
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}



.footer-section img{

  padding: 10px;
  width: 300px;

}

.footer-section h6{
  font-size: 14px;
  padding: none;
  margin-bottom: 0;
  margin-top: 15px;
}

.email-section{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}

.email-section i{
  font-size: 22px;
  padding: 10px 20px;
}

.footer-section ul{
  list-style: none;
  line-height: 30px;
}

.footer-section ul h6
{
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  padding-bottom: 20px;
}

.footer-section ul a{
  text-decoration: none;
  color: #1a75ff;
}

.footer-section ul a:hover{
  color: red;
}


.copyright{
  display: flex;
  background: #1a75ff;
  color: white;

}

.copyright h6{
  width: 100%;
  text-align: center;
  font-size: 12px;
  padding: 15px;
  margin-bottom: 0;
  margin-top: 0;

}

.location-map h6{
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 20px;
}

.location-map iframe
{
  width: 100%;
  height: 300px;
}

@media only screen and (max-width: 1366px) {

  .location-map iframe
  {
    width: 300px;
    height: 300px;
  }
}


@media only screen and (max-width: 1366px) {



  .footer-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align:center;
    width:100%;


  }

  .footer-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }

  .footer-section-menu{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }



  .footer-section img{

    padding: 10px;
    width: 300px;

  }

  .footer-section h6{
    font-size: 14px;
    padding: none;
    margin-bottom: 0;
    margin-top: 15px;
  }

  .email-section{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .email-section i{
    font-size: 22px;
    padding: 10px 20px;
  }

  .footer-section ul{
    text-align: center;
  }


  .location-map h6{
    font-size: 18px;
    text-align: center;
  }

  .location-map iframe
  {
    width: 400px;
    height: 300px;
  }

}






/*---- END OOTER ---*/



.jetfire-form{
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  white-space: nowrap;

}

.jetfire-form-right{
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}

.jetfire-form-group{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}

.jetfire-form-6{
  width: 50%;
}

.jetfire-form-3{
  width: 30%;
}


.jetfire-contact-us{
  padding: 50px 100px;
}


.jetfire-contact-us span{
  color: red;
  font-size: 12px;
}


@media only screen and (max-width: 768px) {

  .jetfire-form-group{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .jetfire-contact-us{
    padding: 10px;
  }

}

.jetfire-about-us{
  padding: 20px;
  line-height: 20px;
  text-align: justify;
}

.jetfire-about-content{
  padding: 10px;
  line-height: 25px;
}

.jetfire-about-content h2{
  padding-bottom: 10px;
  line-height: 30px;
  font-size: 22px;
  font-weight: bold;
}
.jetfire-about-content p{
  padding-bottom: 20px;
  line-height: 30px;
  font-size: 18px;
}

.jetfire-about-content ul li{
  line-height: 30px;
  font-size: 18px;
}

.jetfire-service{
  padding: 20px;

}

.jetfire-service-items{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.jetfire-service-item{
  width: 25%;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 30px;
  margin: 10px;
}

.jetfire-service-item img{
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 10px;
}

.jetfire-service-item h2{
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  color: #1a75ff;
  margin-bottom: 10px;

}

.jetfire-service-item p{
  font-size: 16px;
  font-weight: 200;
  text-align: justify;
  line-height: 25px;
}

.certification-data{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 50px 0px;
}

.certification-content{
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto;
  padding: 10px;
}

.certificate{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.certificate-portrait{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 400px;
}
.certificate img{
  width: 325px;
  height: 225px;
  position: absolute;
}

.certificate-portrait img{
  width: 225px;
  height: 300px;
  position: absolute;
}

.certificate_frame img{
  width: 250px;
  height: 150px;
  position: relative;
  z-index: 0;
}

.certificate_frame_portrait img{
  width: 160px;
  height: 225px;
  position: relative;
  z-index: 0;
}

.certificate_name{
  font-size: 12px;
  color: grey;
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  width: 325px;
  height: 300px;
  text-align: center;
}

.certificate_name p{
  width: 100%;
}

.certificate_name_portrait{
  font-size: 12px;
  color: grey;
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  width: 200px;
  height: 380px;
  text-align: center;
}

.certificate_name_portrait p{
  width: 100%;
}


@media only screen and (max-width: 768px) {
  .certification-data{
    flex-direction: column;
  }

  .certification-content{
    grid-template-columns: auto;
  }

  .certificate img{
    width: 300px;
    height: 200px;
    position: absolute;
  }

  .certificate-portrait img{
    width: 200px;
    height: 300px;
    position: absolute;
  }

  .certificate_frame img{
    width: 235px;
    height: 140px;
    position: relative;
    z-index: 0;
  }

  .certificate_frame_portrait img{
    width: 140px;
    height: 225px;
    position: relative;
    z-index: 0;
  }

  .certificate_name{
    font-size: 12px;
    color: grey;
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    width: 325px;
    height: 300px;
    text-align: center;
  }

  .certificate_name p{
    width: 100%;
  }

  .certificate_name_portrait{
    font-size: 12px;
    color: grey;
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    width: 200px;
    height: 380px;
    text-align: center;
  }

  .certificate_name_portrait p{
    width: 100%;
  }
}
.products{
  padding: 20px;
}

.products h2{
  padding-bottom: 20px;
}

.products ul li{
  line-height: 30px;
}

.products p{
  word-wrap: normal;
}

.product-carousel img{
  height: 300px;
  object-fit: cover;
}

/*---- JETFIRE TEAM ---*/


.jetfire-team{
  display: 100%;
  display: grid;
  grid-template-columns: auto auto;
  padding: 10px;

}

.jetfire-team-main-content{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.jetfire-team-image-section
{
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.jetfire-team-image-section img
{
  width: 90%;
  height: 200px;
  border: 1px solid red;
  object-fit: contain;
  padding: 10px;
}

.jetfire-team-image-section h2
{
  width: 90%;
  font-size: 20px;
  font-weight: bold;
  border: 1px solid red;
    border-top: 3px solid red;
  padding: 20px 10px;
}
.jetfire-team-image-section h3
{
  width: 90%;
  font-size: 16px;
  border: 1px solid red;
  border-top: 0px;
  padding: 10px;
}


.jetfire-team-content{
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 20px;
}

.jetfire-team-content h2
{
  width: 90%;
  font-size: 30px;
  color: red;
  font-weight: bold;
  padding: 10px;
  padding-bottom: 0px;
}
.jetfire-team-content h4
{
  width: 90%;
  font-size: 16px;
  padding: 10px;
  padding-top: 0px;
}
.jetfire-team-content p
{
  width: 90%;
  font-size: 14px;
  padding: 10px;
}

@media only screen and (max-width: 768px) {

  .jetfire-team{
    display: 100%;
    display: grid;
    grid-template-columns: auto;
    padding: 10px;

  }

  .jetfire-team-main-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }

  .jetfire-team-image-section
  {
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .jetfire-team-image-section img
  {
    width: 90%;
    border: 1px solid red;
    object-fit: cover;
    padding: 10px;
  }

  .jetfire-team-image-section h2
  {
    width: 90%;
    font-size: 20px;
    font-weight: bold;
    border: 1px solid red;
      border-top: 3px solid red;
    padding: 20px 10px;
  }
  .jetfire-team-image-section h3
  {
    width: 90%;
    font-size: 16px;
    border: 1px solid red;
    border-top: 0px;
    padding: 10px;
  }


  .jetfire-team-content{
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 10px;
  }

  .jetfire-team-content h2
  {
    width: 90%;
    font-size: 30px;
    color: red;
    font-weight: bold;
    padding: 10px;
    padding-bottom: 0px;
  }
  .jetfire-team-content h4
  {
    width: 90%;
    font-size: 16px;
    padding: 10px;
    padding-top: 0px;
  }
  .jetfire-team-content p
  {
    width: 90%;
    font-size: 14px;
    padding: 10px;
  }
}
/*---- JETFIRE TEAM ---*/
