@font-face {
    font-family: calibri;
    src: url(../Fonts/calibri.ttf);
}

@font-face {
    font-family: calibrib;
    src: url(../Fonts/calibrib.ttf);
}

@font-face {
    font-family: calibril;
    src: url(../Fonts/calibril.ttf);
}

@font-face {
    font-family: calibriz;
    src: url(../Fonts/calibriz.ttf);
}

@font-face {
    font-family: keepcalm;
    src: url(../Fonts/KeepCalm-Medium.ttf);
}

@font-face {
    font-family: myriadpro-bold;
    src: url(../Fonts/MyriadPro-Bold.otf);
}

@font-face {
    font-family: myriadpro-regular;
    src: url(../Fonts/MyriadPro-Regular.otf);
}


*{
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
    font-family: calibri;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
}

:root{
    --main-color: #F99D27;
    --text-color: white;
    --bg-color: #F99D27;
    --main-color-dark: #1B243D;
}

::selection{
  background: var(--main-color);
}

main{
  background: rgb(25,36,58);
  background: linear-gradient(80deg, rgba(25,36,58,0.3) 0%, rgba(255,255,255,1) 100%);
}

.common-h2{
  font-size: 2.5rem;
  text-transform: uppercase;
  color: var(--main-color);
  text-align: center;
  font-family: calibrib;
}

/*--------------homepage------------*/

.homepage-1{
  background: url(../images/homepage_banner.png) no-repeat;
  background-position: bottom;
  background-size: cover;
  width: 100%;
  min-height: 87.5vh;
  display: grid;
  grid-template-columns:  1fr;
  align-items: center;
}

.homepage-banner-text{
  margin-top: -170px;
}

.main-text h1{
font-family: keepcalm;
  font-size: 5rem;
  font-weight: 100;
  line-height: 5.8rem;
}

.main-text p{
  width: 70%;
}

.main-text button{
  padding: 10px 50px;
  font-size: 1.2rem;
  border-radius: 15px;
  background-color: var(--main-color);
  font-family: calibrib;
  cursor: pointer;
  margin-top: 15px;
}

.homepage-2 h2{
  font-family: calibrib;
  font-size: 2.5rem;
  text-align: center;
}
textarea {
  resize: none;
}

/*--------checkbox css start------*/
.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 5px;
  padding-top: 3px;
  cursor: pointer;
  font-size: 16px;
  font-family: calibrib;
}
.control p{
  font-family: calibrib;
}
  .control input {
      position: absolute;
      z-index: -1;
      opacity: 0;
  }
.control_indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #ffffff;
  border: 1px solid var(--main-color);
  border-radius: 0px;
}
.control_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}
.control input:checked ~ .control_indicator:after {
    display: block;
}
.control-checkbox .control_indicator:after {
    left: 8px;
    top: 4px;
    width: 3px;
    height: 8px;
    border: solid var(--main-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
/*--------checkbox css over------*/
.promise-form > form >p{
  font-size: 1.5rem;
  text-align: center;
  font-family: calibril;
}

.promise-form-main{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
  margin-top: 50px;
}


.promise-form-main .promise-form-part-1 input, textarea{
  width: 100%;
  border: 1px solid #E8E8E8;
  padding: 6px;
  font-size: 1.2rem;
  outline: none;
}


.promise-form > form >button{
  padding: 10px 50px;
  font-size: 1.2rem;
  border-radius: 10px;
  background-color: var(--main-color);
  cursor: pointer;
  margin-top: 15px;
  font-family: calibrib;
}


/*-----------Slider Css -------------- */
.slide-container{
  width: 100%;
  padding: 40px 0;
}
.image-content,
.card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}
.card-image{
  position: relative;
  height: 300px;
  width: 300px;
}
.card-image .card-img{
  height: 100%;
  width: 100%;
}
.name{
  font-size: 1.4rem;
  font-family: calibrib;
  font-weight: 500;
  color: var(--main-color);
  text-transform: uppercase;
}

.swiper-navBtn{
  color: var(--main-color);
  transition: color 0.3s ease;
}
.swiper-navBtn:hover{
  color: var(--main-color-dark);
}
.swiper-button-next{
  right: 0;
}
.swiper-button-prev{
  left: 0;
}
.swiper-pagination-bullet{
  background-color: var(--main-color);
  opacity: 1;
}
.swiper-pagination-bullet-active{
  background-color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .slide-content{
    margin: 0 10px;
  }
  .swiper-navBtn{
    display: none;
  }
}

.leadership-sub{
  display: grid;
  grid-template-columns: 30% 70%;
}

.leadership-sub-even{
  display: grid;
  grid-template-columns: 70% 30%;
}

.leadership-content{
  display: block;
  align-items: center;
  justify-content: center;
  padding: 50px 30px;
  border: 1px solid var(--main-color);
  border-left: 0;
  margin: 20px;
  font-family: calibril;
  font-size: 1.1rem;
}

.leadership-content-even{
  display: block;
  align-items: center;
  justify-content: center;
  padding: 50px 30px;
  border: 1px solid var(--main-color);
  border-right: 0;
  margin: 20px;
  font-family: calibril;
  font-size: 1.1rem;
}

.leadership-content-1,.leadership-content-1-even{
  margin-bottom: 15px;
}

#b {
  quotes: "“" "„" ;
  font-weight: bolder;
}

.leadership-content-2, .leadership-content-2-even{
  font-weight: bolder;
}
/*--------------------Safety Keys page---------*/
.main-text p{
  font-size: 1.5rem;
}

.safety-keys-main-4{
  padding-bottom: 100px;
}

.safety-keys-main-4 h2{
  font-size: 2.5rem;
  text-align: center;
}

.safety-keys-main-4 p{
  font-size: 2rem;
  text-align: center;
}

.safety-keys-main-3 div{
  position: relative;
  border: 1px solid grey;
  padding: 50px;
  border-radius: 10px;
}

.safety-keys-main-3 > div > h2{
  background-color: #fff;
  padding: 10px;
  position: absolute;
  top: -25%;
  left: 41.5%;
  font-size: 2.5rem;
  color: var(--main-color);
  font-family: calibrib;
}

.safety-keys-main-3 > div > h3{
  text-align: center;
  font-size: 2.5rem;
  font-family: calibrib;
}

.safety-keys-main-3 div > button{
  width: 270px;
  padding: 10px 50px;
  font-size: 1.5rem;
  border-radius: 15px;
  background-color: var(--main-color);
  font-family: calibrib;
  position: absolute;
  bottom: -18%;
  left:50%;
  margin-left: -130px;
  cursor: pointer;
}

.safety-keys-main-4 p{
  font-family: calibril;
}

.safety-keys-sub-main-5{
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 25% 75%;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  height: 280px;
}

.safety-keys-sub-main-5-even{
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 75% 25%;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  height: 280px;
}

.safety-keys-sub-main-5 .safety-keys-left-img, .safety-keys-sub-main-5-even .safety-keys-left-img{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.safety-keys-sub-main-5 .safety-keys-right-txt{
  background-color: var(--main-color);
}


.safety-keys-sub-main-5 .safety-keys-right-txt, .safety-keys-sub-main-5-even .safety-keys-right-txt{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.safety-keys-right-txt h2{
  font-size: 2.2rem;
  font-family: calibrib;
}

.safety-keys-right-txt p{
  font-size: 1.7rem;
  margin: 10px 0 15px 0;
  font-family:myriadpro-regular;
}
.safety-keys-right-txt button{
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 1.5rem;
  border-radius: 15px;
  background-color: var(--main-color-dark);
  cursor: pointer;
  color: var(--main-color);
  font-family: myriadpro-bold;
}



/*----------- Get Skilled Page--------------*/

header {
    width: 100%;
  }
  
  li {
    list-style: none;
  }
  
  a {
    color: black;
    text-decoration: none;
  }
  
  .container {
    width: 1600px;
    margin: auto;
  }
  
  .subcontainer {
    width: 85%;
    margin: auto;
    padding-top: 25px;
  }
  
  .navbar {
    width: 100%;
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    z-index: 10;
  }
  
  .nav-branding {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-link{
    padding: 10px 20px;
    transition: 0.5s;
    font-size: 1.3rem;
  }

  .nav-link:hover{
    background: var(--main-color);
  }
  .active{
    background: var(--main-color);
    font-family: calibrib;
  }
  .hamburger {
    display: none;
    cursor: pointer;
    background-color: white;
  }
  
  .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: var(--main-color);
  }
  
  #home {
    margin-top: 70px;
    height: 100vh;
    border: 1px solid black;
  }
  

section{
    padding: 70px 10%;
}

.main{
    width: 100%;
    min-height: 87.5vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
    align-items: center;
}

.main-img img{
    max-width: 100%;
    width: 480px;
    height: auto;
}

.main-text h1{
  font-family: keepcalm;
    font-size: 5rem;
    font-weight: 100;
    line-height: 5.8rem;
}

.main-2 h2{
  font-size: 1.8rem;
  padding: 50px 20px;
  text-align: center;
  width: 70%;
  margin: auto;
  font-weight: 100;
  font-family: calibril;
}

.main-3{
  background: #19243a;
  padding-bottom: 200px;
}

.main-3 h2{
  color: white;
  font-size: 2.5rem;
  font-weight: 100;
  padding: 0 120px;
  text-align: center;
  font-family: calibril;
}


/*main-4*/
.main-4{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 20px;
  margin-top: -200px;
}
.main-4 >.container {
  position: relative;
  background-color: var(--main-color);
  height: 250px;
  font-size: 1.5rem;
  box-shadow: 0px 14px 10px -8px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.image {
  width: 150px;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: white;
  display: flex;
  text-align: center;
  align-items: center;
  padding: 20px;
}

.container:hover .overlay {
  opacity: 1;
}

/* main-5 */

.main-5 > .training{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.main-5 .training .box{
  width: 65px;
  height: 65px;
  background-color: #1B243C;
}

.main-5 .training .text{
  font-family: calibrib;
  font-size: 2.5rem;
  width: 500px;
  text-align: center;
  padding: 8px 0px;
  box-shadow: inset 0px 0px 9px 0px rgba(0,0,0,0.75);
}

.main-5 .training .box2{
  width: 65px;
  height: 65px;
  background-color: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-5 .training .text2{
  font-size: 2rem;
  font-weight: 200;
  width: 500px;
  text-align: center;
  padding: 13px 0px;
  box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.25);
}

/* ----Register for training----*/
.register h2{
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 900;
  font-family:myriadpro-bold;
}
form{
  border: 2px solid #E8E8E8;
  padding: 70px 50px;
  position: relative;
}
.register input{
  padding: 10px;
  border:1px solid #E8E8E8;
  width: 45%;
  font-size: 1rem;
}

.register form button{
  width: 300px;
  padding: 10px 50px;
  font-size: 1.5rem;
  border-radius: 15px;
  background-color: var(--main-color);
  position: absolute;
  bottom: -15%;
  left:50%;
  margin-left: -150px;
  font-family:myriadpro-bold;
}

.register h3{
  text-align: center;
  margin-top: 70px;
  font-size: 1.5rem;
}
/* -------Footer Starts here -------*/
#footer{
    background-color: var(--bg-color);
}

.main-footer{
    display: flex;
    flex-wrap: wrap;
}

.footer{
    padding: 10px 0;
}

.col{
    padding: 0 7%;
    width: 33.33%;
}

.col ul li:not(:last-child){
    margin-bottom: 5px;
}

.col ul li a{
    color: black;
    font-size: 1.1rem;
    transform: .5s;
    font-family: calibril;
}

.col ul li a:hover{
    color: white;
}

.col h4{
  font-family: calibrib;
}

.access-now{
    color: var(--main-color);
    padding: 7px 20px;
    font-size: .9rem;
    margin-top: 10px;
    font-family: calibrib;
}

.border-right{
  border-right: 1px solid white;
}

/* Copyright */
.c-section{
  padding: 30px 50px;
  background-color: #1B243C;
}
section .copyright{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: baseline;
  justify-content: space-between;
  color: white;
}

.copyright div{
  font-family: calibril;
}
.copyright .poweredby{
  justify-self: end;
  font-family: calibril;
}


/*--------------------Quiz page---------*/
.quiz-banner{
  position: absolute;
  bottom: -6px;
  right: 0;
}

.quiz-main-2, .quiz-main-3{
  width: 85%;
  margin: auto;
  margin-bottom: -100px;
}

.quiz-main-2 h2{
  font-family:myriadpro-regular;
}

.quiz-main-3{
  color: var(--main-color);
  font-size: 2rem;
  font-weight: 100;
  margin-top: -100px;
  text-align: center;
}

.quiz-main-3 h2, .quiz-register h2{
  font-family: myriadpro-bold;
}

.quiz-register{
  margin-top: -50px;
}

.quiz-register{
  font-family: myriadpro-bold;
}


/*---------Quiz Go Page--------*/
.start_btn,
.quiz_box,
.result_box{
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-55%, -50%);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 
                0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.quiz_box.activeQuiz,
.result_box.activeResult{
    opacity: 1;
    z-index: 5;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

#progressBar{
    width: 60vw;
    height: 20px;
    margin: auto;
    margin-top: 75px;
    background-color: #E8E8E8;
    border-radius: 10px;
}

#progress_bar_full{
    height: 18px;
    background-color: var(--main-color);
    width: 0%;
    border-radius: 10px;
}

.start_btn button{
    font-size: 25px;
    font-weight: 500;
    color: var(--main-color);
    padding: 15px 30px;
    outline: none;
    border: none;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 
                0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.quiz_box{
    width: 60%;
    background: #fff;
    border-radius: 5px;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.quiz-section{
    padding: 25px 30px 20px 30px;
    background: #fff;
}

.quiz-section .que_text{
    font-size: 25px;
    font-weight: 600;
}

.quiz-section .quiz_box_sub{
    display: grid;
    grid-template-columns: 70% 30%;
}

.quiz-section .quiz_box_sub .que_image{
    display: grid;
    align-items:center;
    justify-content:center;

}

.quiz-section .option_list{
    position: relative;
    padding: 20px 0px;
    display: block;   
}
.radio_custom{
    margin-left: 30px;
}

.radio_custom::before{
    content: "";
    position: absolute;
    top: 10;
    left: 10px;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border: 2px solid var(--main-color);
    border-radius: 50%;
}

.radio_custom:hover:before{
    content: "";
    background-color: var(--main-color);
    border: 2px solid white;
}

.quiz-section .option_list .option{
    border: 1px solid var(--main-color);
    border-radius: 5px;
    padding: 8px 15px;
    font-size: 17px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quiz-section .option_list .option:last-child{
    margin-bottom: 0px;
}

.quiz-section .option_list .option:hover{
    color: #ffffff;
    background: var(--main-color);
}

.quiz-section .option_list .option.correct{
    color: #155724;
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

.quiz-section .option_list .option.incorrect{
    color: #721c24;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
}

.quiz-section .option_list .option.disabled{
    pointer-events: none;
}

.quiz-section .option_list .option .icon{
    height: 26px;
    width: 26px;
    border: 2px solid transparent;
    border-radius: 50%;
    text-align: center;
    font-size: 13px;
    pointer-events: none;
    transition: all 0.3s ease;
    line-height: 24px;
}
.option_list .option .icon.tick{
    color: #23903c;
    border-color: #23903c;
    background: #d4edda;
}

.option_list .option .icon.cross{
    color: #a42834;
    background: #f8d7da;
    border-color: #a42834;
}

.quiz-box-footer{
    height: 60px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid lightgrey;
}

.quiz-box-footer .total_que span{
    display: flex;
    user-select: none;
}

.quiz-box-footer .total_que span p{
    font-weight: 500;
    padding: 0 5px;
}

.quiz-box-footer .total_que span p:first-child{
    padding-left: 0px;
}

.quiz-box-footer button{
    height: 40px;
    padding: 0 13px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    border: none;
    outline: none;
    color: #fff;
    border-radius: 5px;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    line-height: 10px;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 
                0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.quiz-box-footer button:hover{
    background: white;
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

.quiz-box-footer button.show{
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.result_box{
    background: #fff;
    border-radius: 5px;
    display: flex;
    padding: 25px 30px;
    width: 60%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.result_box .score_title, .your_score{
    font-size: 3rem;
    text-align: center;
    font-weight: 600;
}
.result_box .your_score{
    color: var(--main-color);
}

.result_box .complete_text{
    font-size: 2rem;
    text-align: center;
    font-weight: 500;
}

.result_box .score_text{
    text-align: center;
    text-transform: uppercase;
    margin: 20px 0;
}
.result_box .score_text_2{
    color: #F79524;
    margin-left: 20px;
    text-transform: uppercase;
}

.result_box .buttons{
    display: flex;
    margin: 20px 0;
}

.result_box .buttons button{
    margin: 0 10px;
    height: 45px;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 
                0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.buttons button.quit{
    color: #fff;
    background: var(--main-color);
    border: 1px solid var(--main-color);
}

.buttons button.quit:hover{
    background: white;
    color: var(--main-color);
    border: 1px solid var(--main-color);
}


/* Media Query */
@media(max-width:1600px) {
    .container {
      width: 100%;
    }
  }
  
@media(max-width:1140px) {
    section{
        padding: 50px 8%;
    }
    .col{
        width: 50%;
        margin-bottom: 10px;
    }
}

@media(max-width:1024px) {
    .hamburger {
      display: block;
    }
  
    .hamburger.active .bar:nth-child(2) {
      opacity: 0;
    }
  
    .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
  
    .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  
    .nav-menu {
      position: fixed;
      left: -100%;
      top: 70px;
      gap: 0;
      flex-direction: column;
      background-color: var(--bg-color);
      width: 100%;
      text-align: center;
      transition: 0.3s;
    }
  
    .nav-item {
      margin: 16px 0;
    }
  
    .nav-menu.active {
      left: 0;
    }
    .main-2 h2{
      font-size: 2.0rem;
      font-weight: 200;
      padding: 50px 0;
    }

    .main-4{
      display: grid;
      grid-template-columns: 1fr;
      margin-top: -200px;
      margin-bottom: -50px;
    }
    .main-4 >.container {
      margin-bottom: 20px;
    }

    .main-5{
      margin-bottom: -150px;
    }
    .main-5 .training .text2{
      font-size: 1.3rem;
      line-height: 30px;
    }

    .main-5 .training .box2{
      width: 65px;
      height: 58px;
      background-color: var(--main-color);
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .register{
      margin-top: -100px;
    }
    .register form{
      padding: 50px 10px;
    }
    .register form button{
      padding: 10px 30px;
  font-size: 1.2rem;
  left:30%
    }

    .main-footer .col{
      border: 0;
    }

    section .copyright{
      display: grid;
      grid-template-columns: 1fr;
      align-items: baseline;
      justify-content: space-between;
      justify-self: center;
    }
    
.copyright .poweredby, .copyright div{
  justify-self: center;
}
.copyright .poweredby{
  margin-top: 10px;
}

.register form button{
  width: auto;
  margin-left: -25px;
}
.quiz-banner{
  position: relative;
  margin-bottom: -105px;
  bottom: 0;
  right: 0;
}

.quiz-register form button{
  margin-left: -9px;
}

.main-text h1 {
  text-align: center;
}

.main-text p {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  font-size: 1.2rem;
}

.safety-keys-main-4 p {
  font-size: 1.2rem;
}

.main-text button {
  margin-left: 40px;
}

.promise-form form{
  padding: 27px 25px;
}

.promise-form-main {
  grid-template-columns: 1fr;
  column-gap: 20px;
  row-gap: 30px;
  margin-top: 40px;
}

.leadership-sub {
  display: grid;
  grid-template-columns: 100%;
  margin: auto;
}

.leadship-img{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.leadership-content {
  border-left: 1px solid var(--main-color);
  border-top: 0;
}

.leadership-sub-even {
  display: grid;
  grid-template-columns: 100%;
}

.leadership-content-even {
    order: 2;
}

.leadership-content-even {
  border-right: 1px solid var(--main-color);
  border-top: 0;
}

.main-footer .col{
    width: 100%;
    margin-bottom: 40px;
}

.main-footer .footer-logo{
  text-align: center;
}

.main-2 h2 {
  width: 100%;
}
.safety-keys-main-3 > div > h2 {
  top: -14%;
  left: 22%;
  font-size: 2rem;
}

.safety-keys-main-3 > div > h3 {
  font-size: 2rem;
}

.safety-keys-main-3 div > button {
  bottom: -13%;
  margin-left: -135px;
}

.safety-keys-sub-main-5 {
  grid-template-columns: 100%;
  height: auto;
}

.safety-keys-sub-main-5 .safety-keys-right-txt, .safety-keys-sub-main-5-even .safety-keys-right-txt {
  padding: 30px;
  order: 2;
  height: 280px;
}

.safety-keys-sub-main-5-even {
  grid-template-columns: 100%;
  height: auto;
}

.main-5 .training .text {
  font-size: 2rem;
  line-height: 49px;
}

.box2 img {
  height: 50%;
}

.safety-keys-sub-main-5 .safety-keys-left-img, .safety-keys-sub-main-5-even .safety-keys-left-img {
  min-height: 357px;
}


.quiz-section .quiz_box_sub{
  grid-template-columns: 100%;
}

.quiz-section .quiz_box_sub .que_image{
  order: 2;
}

.quiz-section .quiz_box_sub .que_image img{
  width: 100px;
}

.quiz-section .option_list{
  order:3; 
}

.quiz_box{
  width: 90%;
  margin-top: -30px;
}

.quiz-section .que_text{
  font-size: 20px;
  font-weight: 600;
}

.quiz-section .option_list .radio_custom{
  font-size: 16px;
}

.result_box{
  width: 90%;
  margin-top: -30px;
}




}


@media(max-width:720px){
    .main{
        grid-template-columns: 1fr;
        text-align: center;
    }
    .main .main-text h1{
      font-size: 2.5rem;
    }
    section{
        padding: 100px 7%;
    }
    .main-2 h2{
      font-size: 1.2rem;
      font-weight: 200;
      padding: 30px 0;
      width: 100%;
    }

    .main-3 h2{
      color: white;
      font-size: 2rem;
      font-weight: 100;
      padding: 0 0px;
      text-align: center;
    }
}

@media(max-width:575px){
    .main-text h1{
        font-size: 4rem;
        line-height: 4rem;
    }
    .col{
        width: 100%;
    }
}