* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
 }
html{
  scroll-behavior: smooth;
}

a{
  text-decoration: none !important;
}
        
 body{
  background-color: #f2f2f2 !important;
 }
/* cudivision1 */

.cudbg{
  background: url(../img/about_1.jpg);
  background-size: cover;
  width: 100%;
  height: 500px;
  filter: brightness(0.6);
  position: relative;
  width: 100%;
  height: 500px;
  
}
.cud1con{
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 30px;
  font-weight: 800;
  font-family: 'Courier New', Courier, monospace;
  color: #ffffff;
}



.cudivision2{
  
  width: 80%;
  margin: auto;
  margin-top: 100px;
  margin-bottom: 100px;
  

}


.cud2sec1{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
  max-width: 1400px;
  margin: auto;
}
.cud2img img{
  width: 380px;
  height: 350px;
}
.cud2img{
  display: flex;
  justify-content: center;
  align-items: center;
}

.cud2con{
  /* grid-column: 1/ span 2; */
  padding: 10px 20px 0 30px;
  margin-bottom: 30px;
}
.cud2con p{
  text-align: left;
  margin: 20px 0;
  font-size: 16px;
}
.cud2con h1 span{
  color: var(--primary-color);
}




.cud2sec2{
  width: 80%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(min(250px,100%),1fr));
  grid-gap: 20px;
  margin-top: 50px;
  max-width: 1300px;

}

.cud2card1{
  width: 250px;
  height: 300px;
  margin: auto;
  background-color: #ffffff;
  border-radius: 20px;
  border-top: 4px solid #0e1d34;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.cud2card1 i{
  font-size: 40px;
  color: #0e1d34;
}
.cud2card1:hover ,.cud2card2:hover ,.cud2card3:hover {
  transform: scale(1.02);
  transition: .3s;
}
.cud2card1 h3{
  margin: 15px;
}
.cud2card1 i:hover{
  color: #0e1d34;
}
.cud2card2 i:hover{
  color: #0e1d34;
}
.cud2card3 i:hover{
  color: #0e1d34;
}
.cud2card1 p{
  text-align: center;
  padding: 0 20px;
  font-size: 14px;
}             
.cudivision2 button {
  margin-top: 10px;
  font-size: 15px;
  /* letter-spacing: 2px; */
  /* text-transform: uppercase; */
  display: inline-block;
  background-color: #ffffff;
  text-align: center;
  font-weight: 500;
  padding: 5px 5px;
  border: 2px solid #0e1d34;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
  color: #0e1d34;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s ease all;
  z-index: 1;
}

.cudivision2  button:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: '';
  background-color: #0e1d34;
  z-index: -1;
}

.cudivision2 button:hover, button:focus {
  color: white;
}

.cudivision2 button:hover:before,.cudivision2  button:focus:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

.cudivision2 button:active {
  transform: scale(0.9);
}






.cudivision3{
  width: 80%;
  margin: auto;
  margin-top: 50px;
  color: var(--secondary-color);

}
.cud3grids{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(min(230px,100%),1fr));
  grid-gap: 30px;
  margin-top: 80px;
  

}
.cud3grid{
  height: 100px;
  width: 230px;
  background-color: var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  border-radius: 15px;
  cursor: pointer;
}
.cud3grid h1{
  font-size: 26px;
  margin-left: 20px;
}
.cud3con h1 span{
  color: var(--primary-color)
}

.cud3grid:hover{
  color: #d69a17;
  transform: scale(1.02);
  transition: .2s;
}
.cud3con p{
  text-align: left;
}




.cudivision4{
  width: 60%;
  margin: auto;
  margin-top: 100px;
  max-width: 800px;
  color: var(--secondary-color);
  padding: 20px;
}
.accordionItem{
  border-bottom: 1px solid;
  padding: 20px 0;
}
.accordionH{
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;

}
.accordionH h1{
  font-size: 18px;
}
.content{
  padding: 0 5px;
  max-height: 0;
  overflow: hidden;
}
.accordionItem.active .content{
  max-height: 600px;
  transition: .5s ;
  padding: 15px;
}
.accordionItem.active h1{
  color: #0e1d34;
}
.accordionItem.active .icon{
  transform: rotate(180deg);
}
.cudivision4 .icon{
  font-size: 22px;
}





.cudivision5{
  width: 80%;
  margin: auto;
  margin-top: 150px;
  margin-bottom: 100px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(min(500px,100%),1fr));
  grid-gap: 30px;
  color: var(--secondary-color);

}
.cud5con h1{
  text-align: left;
  margin-bottom: 50px;
}
.cud5form{
  margin-left: 30px;
}
.cud5form input{
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 1.5px solid black;
  width: 500px;
  height: 30px;
  margin: 20px 0;
  caret-color: white;
  
}
.cud5form label{
  font-size: 19px;
}

.cudivision5 button {
  margin-top: 10px;
  font-size: 15px;
  /* letter-spacing: 2px; */
  /* text-transform: uppercase; */
  display: inline-block;
  text-align: center;
  font-weight: 500;
  padding: 10px 10px;
  border: 2px solid #0e1d34;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
  color: #0e1d34;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s ease all;
  z-index: 1;
}

.cudivision5  button:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: '';
  background-color: #0e1d34;
  z-index: -1;
}

.cudivision5 button:hover, button:focus {
  color: white;
}

.cudivision5 button:hover:before,.cudivision5  button:focus:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

.cudivision5 button:active {
  transform: scale(0.9);
}
.cudivision5 span{
  color: #0e1d34;
}

button{
  cursor: pointer;
}
.map h1{
  margin-bottom: 15px;
}


.newsletter{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  /* background-color: rgb(0, 0, 0); */
  /* padding: 50px 95px 10px 95px; */
  /* border-radius: 50% 50% 70% 30% / 100% 100% 0% 0% ; */

}

.division9{
  display: flex;
  justify-content:left;
  align-items: center;
  margin: auto;
  width: 80%;
  color: var(--secondary-color);
  margin-bottom: 100px;
  margin-top: 150px;

}
.division9 span{
  color: #0e1d34;
}
.division9 .d9p{
  margin-top: 15px;
  font-size: 15px;
}
.newsletter input{
  width: 300px;
  height: 35px;
  outline: none;
  border: none;
  margin: 25px 0;
}
.division9 input{
  border-bottom: 1px solid black;
}
.division9 button {
  padding: 0.8em 1.8em;
  border: 2px solid #0e1d34;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  transition: .3s;
  z-index: 1;
  font-family: inherit;
  font-weight: 700;
  color: #0e1d34;
 }
 
 .division9 button::before {
  content: '';
  width: 0;
  height: 400%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #0e1d34;
  transition: .5s ease;
  display: block;
  z-index: -1;
 }
 
 .division9 button:hover::before {
  width: 105%;
 }
 
 .division9 button:hover {
  color: #111;
 }

 @media screen and (min-width: 321px) and (max-width: 700px){
  .cud5form input{
    width: 80%;
  }
 }

 
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}
.contact{
  max-width: 1200px;
  margin: auto;
}
.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}



.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 77px;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
  text-align: left;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}