/* Start Global Rules */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: "Gotham Rounded";
  src: url('../gotham/GothamRounded-Medium.otf');
}
@font-face {
  font-family: "Gotham Rounded";
  src: url('../gotham/GothamRounded-Bold.otf');
  font-weight: bold;
}
*::-moz-selection { /* Code for Firefox */
  background:#FeAA14;
}

*::selection {
  background:#FeAA14;
}
/* font-family: "Montserrat", sans-serif; */
/* font-family: ""Gotham Rounded"", sans-serif; */

body{
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
  font-family: "Montserrat", sans-serif;
  margin: 0;
}
body::-webkit-scrollbar{
  display: none;
}

li{
  list-style: none;
}
a{
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}



h2{
  font-family: "Gotham Rounded", sans-serif;
}
h3{
  font-family: "Gotham Rounded", sans-serif;
}
h4{
  font-family: "Montserrat", sans-serif;
}

/* Start Header */
header{
  position: relative;
  padding: 15px 2rem 0px 2rem;
  z-index: 3;
}
header li, header a{
  text-decoration: none;
  color: #222939;
  font-size: 1.3rem;
  /* font-family:  */
  font-family: "Gotham Rounded";
  font-weight: bold;
}
header a:hover{
  color:#FeAA14;
}
.navbar{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo{
  padding-top: 1px;
}
.navbar .logo img{
  height: 80px;
  margin-right: -40px;
}
.navbar .links{
  display: flex;
  position: relative;
  gap: 2rem;
}
.navbar .toggle_btn{
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}
.act_btn{
  background-color:#FeAA14;
  color: #222939;
  padding: 0.5rem 1.8rem;
  border-radius: 20px;
  font-family: "Gotham Rounded";
  font-size: 1.05rem;
  font-weight: bold;
  border: none;
  outline: none;
  cursor: pointer;
  transition: scale 0.2 ease;
}
.act_btn:hover{
  scale: 1.05; 
  background-color:#FeAA14;
  color: #222939;
}
.act_btn:active{
  scale: 0.95;
}

.sol{
  color: #222939;
  border-radius: 12px;
  font-size: 1.3rem;
  border: none;
  outline: none;
  cursor: pointer;
  transition: scale 0.2s ease;
}
.sol:hover{
  color:#FeAA14;
  scale: 1.05;
}
.sol:active{
  scale: 0.95;
}
/* dropdown */

.dropdown_sol{
  display: block;
  position: absolute;
  padding: 0;
  top: 30px;
  left: 130px;
  width: 300px;
  height: 0px;
  background: rgba(254, 170, 20, 0.2);
  backdrop-filter: blur(15px);
  border-radius: 10px;
  overflow: hidden;
  transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dropdown_sol ul{
  padding: 0;
  margin: 0;
  list-style: none;
}
.dropdown_sol li{
  padding: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  font-family: "Gotham Rounded";
  font-weight: bold;
}
.dropdown_sol li a{
  font-size: 19px;
}
.dropdown_sol.open{
  height: 170px;
}

.dropdown_menu{
  display: none;
  position: absolute;
  right: 2rem;
  top: 70px;
  width: 300px;
  height: 0;
  background: rgba(254, 170, 20, 0.2);
  backdrop-filter: blur(15px);
  border-radius: 10px;
  overflow: hidden;
  transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dropdown_menu.open{
  padding-top: 10px;
  height:430px;
}

.dropdown_menu ul{
  padding: 0;
  margin: 0;
  list-style: none;
}
.dropdown_menu li{
  padding: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Gotham Rounded";
  font-weight: bold;
}

.dropdown_menu .act_btn{
  width: 100%;
  display: flex;
  justify-content: center;
  font-family: "Gotham Rounded";
  font-weight: bold;
}
/* responsive */
@media screen and (max-width: 1068px) {
  .navbar .links,
  .navbar .act_btn{
    display: none;
  }
  .navbar .toggle_btn{
    display: block;
  }
  .dropdown_menu{
    display: block;
  }
  .dropdown_menu li {
    justify-content: space-between;
  }
  .dropdown_menu li a{
    font-size: 18px;
  }
}
@media screen and (max-width: 576px){
  .dropdown_menu{
    left: 2rem;
    width: unset;
  }
  }
/* End header */


.contact{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top:50px;
}
.contact .upper{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}
.contact .upper .body{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact .upper img{
  width: 500px;
}
.contact .lower{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.form-wrapper{
  max-width: 25rem;
}
.contact .upper .contact-form{
  display: grid;
  margin-top: 2.55rem;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 4rem;
  row-gap: 2rem;
}
.input-wrap{
  position: relative;
}
.contact .upper .input-wrap.w-100{
  grid-column: span 2;
}
.contact-input{
  width: 100%;
  border: none;
  outline: none;
  padding: 1.5rem 0.5rem calc(0.75rem - 2px) 0.5rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 15px;
  background-color: hsla(208, 50%, 50%, 6.5%);
  transition: 0.3s;
  border: 2px solid transparent;
  box-shadow: 0 0 0 0px hsla(208, 92%, 54%, 0.169);
}
.contact-input:hover{
  background-color: hsla(208, 50%, 50%, 14%);
}
.input-wrap label{
  position: absolute;
  top: 50%;
  left: 23px;
  transform: translateY(-50%);
  color: #8c9aaf;
  pointer-events: none;
  transition: 0.25s;
}
.input-wrap .icon{
  position: absolute;
  right: 0rem;
  top:50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #8c9aaf;
  font-size: 1.15rem;
  transition: 0.3s;
}
textarea.contact-input{
  resize: none;
  width: 100%;
  min-height: 80px;
}
textarea.contact-input ~ label{
  top: 1.2rem;
  transform: none;
}
textarea.contact-input ~ .icon{
  top: 1.3rem;
  transform: none;
}
.input-wrap.focus .contact-input{
background-color: white;
border: 2px solid #FEAA14;
box-shadow: 0 0 0 5px hsla(208, 91%, 55%, 0.11);
}
.input-wrap.focus label{
  color: #FEAA14;
}
.input-wrap.focus .icon{
color: #FEAA14;
}
.input-wrap.not-empty label{
  font-size: 0.66rem;
  top: 0.75rem;
  transform: translateY(0);
}
.contact-buttons{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4rem;
  width: 100%;
  grid-column: span 2;
  font-family: Poppins;
}
.btn{
display: inline-block;
padding: 1.1rem 0.5rem;
background-color: #FeAA14;
color: black;
border-radius: 40px;
border: none;
font-family: "Montserrat", sans-serif;
font-weight: 500;
font-size: 16px;
cursor: pointer;
transition: 0.3s;
}
.btn:hover{
  background-color: #ffa600d8;
}
.btn.upload{
  position: relative;
  background-color: hsla(208, 50%, 50%, 6.5%) ;
}
.btn.upload span{
  color: #9ca7b6 ;
}
.btn.upload:hover{
  background-color: hsla(208, 50%, 50%, 14%) ;
}
.btn.upload input{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  opacity: 0;
}
.contact .lower .information{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}


.select-menu .select-btn{
  width: 100%;
  border: none;
  outline: none;
  padding: 1.5rem 0.5rem calc(0.75rem - 2px) 0.5rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 15px;
  background-color: hsla(208, 50%, 50%, 6.5%);
  transition: 0.3s;
  border: 2px solid transparent;
  box-shadow: 0 0 0 0px hsla(208, 92%, 54%, 0.169);
  cursor: pointer;
  
}
.select-btn i{
  color: #8c9aaf;
  font-size: 1.15rem;
  transition: 0.3s;
}
.select-menu.active .select-btn i{
  transform: rotate(-180deg);
}
.select-menu .options{
  position: relative;
  padding: 20px;
  margin-top: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 3px rgba(0,0,0,0.1);
  display: none;
}
.select-menu.active .options{
  display: block;
}
.options .option{
  display: flex;
  height: 55px;
  cursor: pointer;
  padding: 0 16px;
  border-radius: 8px;
  align-items: center;
  background: #fff;
}
.options .option:hover{
  background: #F2F2F2;
}
.option i{
  font-size: 25px;
  margin-right: 12px;
}
.option .option-text{
  font-size: 18px;
  color: #333;
}


@media screen and (max-width: 1080px ) {
  .contact{
    margin-left: 20px;
    margin-right: 20px;
  }
  .contact .upper img{
    width: 400px;
  }
  .contact .upper{
    width: 800px;
  }
}

@media screen and (max-width: 850px ) {
  .contact .upper{
    flex-direction: column;
    align-items: flex-start;
    width: 350px;
    margin-left: -15px;
  }
  .contact .upper img{
    width: 400px;
  }
  iframe{
    width: 350px;
    height: 350px;
  }
  .contact .lower{
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Start Footer */
/* font-family: "Montserrat", sans-serif; */
/* font-family: "Gotham Rounded", sans-serif; */
.footer{
  background-color: #222939;
  font-family: "Montserrat", sans-serif; 
  color: white;
  font-size: 12px;
  overflow: hidden;
  border: none;
}
svg{
  width: 200%;
  height: 100px;
  border: none;
  /* color: white; */
  /* background-color: #FFF; */
}
.footer .cont{
  border: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0px 40px 20px 40px;
  gap: 250px;
}
.footer h1{
  font-family: "Gotham Rounded";
  font-weight: bold;
}

/* Col 1 */
.f-col1{
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 250px;
}
.f-col1 .logo{
  width: 150px;
  margin-left: -5px;
}
.title{
  font-size: 17px;
  font-weight: 600;
  font-family: "Gotham Rounded";
  font-weight: bold;
}

.f-col1 i, .icons{
  color: #FeAA14;
  font-size: 50px;
}
.f-col1 .SCC{
  margin-top: 5px;
  width: auto;
  height: auto;
  max-width: 165px;
}

/* Col 2 */
.f-col2{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 250px;
  gap: 10px;
}
.f-col2 h2 ,.f-col2 h1{
  font-family: "Gotham Rounded";
}
.f-col2 h2{
  font-size: 16px;
}
.f-col2 p{
  font-size: larger;
}

/* Col 3 */
.f-col3{
  max-width: 260px;
}
.f-col3 p{
  font-size: larger;
}
.f-col3 img{
  width: 150px;
  margin-top: 10px;
  margin-left: -20px;
}

/* Footer Responsive */
@media screen and (max-width: 1000px){
  .footer .cont{
    gap: 150px;
  }
}
@media screen and (max-width: 800px){
  .footer .cont{
    gap: 50px;
  }
}
@media screen and (max-width: 600px){
  .footer .cont{
    gap: 10px;
  }
}
@media screen and (max-width: 525px){
  .footer .cont{
    flex-direction: column-reverse;
    gap: 20px;
  }
  .footer .f-col3{
    display: flex;
    align-items: center;
    gap: 100px;

  }
  .footer .f-col3 img{
    width: 150px;
    height: 150px;
  }

  }
/* End Footer */