/* 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;
  padding: 0;
}
body::-webkit-scrollbar{
  display: none;
}

li{
  list-style: none;
}
a{
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

/* End Global Rules */
/* 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 */


.JOT{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: auto;
  height: auto;
  min-height: 465px;
  max-width: 1140px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
h1{
  font-family: "Gotham Rounded", sans-serif; 
}
.JOT .info p{
  font-family: "Montserrat";
  max-width: 450px;
  align-items: left;
  font-size: 18px;
  line-height: 25px;
}
img{
  width: auto;
  height: auto;
  max-width:650px;
}
@media screen and (max-width: 893px) {
  .JOT h1{
    font-size: 24px;
  }
}
@media screen and (max-width: 750px) {
  .JOT{
    margin-top: 70px;
  flex-direction: column;
  }
}
@media screen and (max-width: 500px) {
  .JOT {
    padding: 15px;
  }
  .JOT img{
  width: 350px;
  }
}


/* 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 */