/* 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;
}






/* 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 */




.press{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: auto;
  min-height: 440px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 50px;
}
.press .info p{
  font-family: "Montserrat";
  max-width: 450px;
  align-items: left;
  font-size: 18px;
  line-height: 25px;
}
.info h1{
  font-family: "Gotham Rounded", sans-serif;
}
img{
  width: auto;
  height: auto;
  max-width:750px;
}
.mobile{
  display: none;
}
@media screen and (max-width: 1200px) {
  .press{
    align-items: center;
  }
  .press img{
    width: 600px;
    }
}
@media screen and (max-width: 1035px) {
  .press{
    flex-direction: column;
    align-items: center;
    

  }
  .info{
    width: 700px;
    margin-right: 50px;
  }
  .press img{
    width: 700px;

  }
  .desk{
    display: none;
  }
  .mobile{
    display: block;
    padding-bottom: 20px;
  }
  h1{
    text-align: center;
    font-size: 2em;
  }
  p{
    width: 500px;
    margin-left: 110px;
  }
}
@media screen and (max-width: 750px) {

  .press img{
    width: 500px;
    margin-left: 0px;
    }

    .info{
      width: 500px;
    }
    p{
      margin-left: 0px;
    }
}
@media screen and (max-width: 700px) {

  .press{
    margin-bottom: 0px;
  }

}
@media screen and (max-width: 550px) {
  .press {
    width: auto;
    max-width: 350px;
    padding-left: 45px;
  }
  .press img{
    width: auto;
    max-width: 350px;
  }
  .info {
    width: auto;
    max-width: 350px;
  }
  p{
    width: auto;
    max-width: 350px;
  }

}
@keyframes showcard{
  from{
    transform:translateY(300px);
    filter: blur(10px);
    opacity: 0;
}to{
    transform:translateY(0);
    opacity: 1;
    filter: blur(0px);
}
}

.articles{
  display: flex;
  justify-content: center;
  height: 1000px;
  gap: 100px;
}
.main{
  display: flex;
  position: relative;
  width: 700px;
}
.main .article-card{
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 680px;
  opacity: 0;
  border-radius: 25px;
  padding: 15px 15px;
  display: none;
}
.main .article-card.active{
  display: flex;
  opacity: 1;
  animation: showcard 1.5s;
}
.main .article-card .details{
  font-size: 18px;
  line-height: 25px;
}
.main .article-card .details a:hover{
  font-weight: 600;
  background-color: #FeAA14;
  border-radius: 8px;
}
.main .article-card img{
  width: 680px;
  border-radius: 25px;
}


.side{
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 660px;
  height: 700px;
  overflow: auto;
  padding-right: 15px;
}
.side .side-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 25px;
  padding: 15px 15px;
  gap: 15px;
}
.side .side-card:hover{
  background: rgba(238, 238, 238, 1);
  transition: all 1s;
  cursor: pointer;
}
.side .side-card.active{
  background: rgba(254, 170, 20, 0.08);
}
.side .side-card .card-info{
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
.side .side-card .card-info .title{
  font-size: 16px;
  font-family: "Gotham Rounded", sans-serif;
  font-weight: bold;
}
.side .side-card img{
  height: 200px;
  border-radius: 5%;
}
::-webkit-scrollbar {
  width: 20px;
}
::-webkit-scrollbar-track {
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #d6dee1;
  border-radius: 20px;
  border: 6px solid transparent;
  background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #a8bbbf;
}
@media screen and (max-width: 1500px){
  .articles{
    gap: 0px;
  }
  .main{
    margin-right: 50px;
  }
  .main .article-card{
    gap: 10px;
    width: 500px;
  }

  .main .article-card img{
    width: 500px;
  }
  .side .side-card .card-info{
    height: 100px;
    font-size: 14px;
  }
  .side{
    /* width: 600px; */
    margin-left: -40px;
  }
  .side .side-card img{
    height: 150px;
  }
}
@media screen and (max-width: 1200px){
  .articles{
    flex-direction: column;
    align-items: center;
    height: 1500px;
    gap: 50px;
  }
  .main{
  display: flex;
  align-items: flex-start;
  width: unset;
  }
  .main .article-card{
    display: none;
    width: 800px;
    position: unset;
}
  .main .article-card.active{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main .article-card img{
    width: 700px;
  }
  .side{
  width: 800px;
  }
}
@media screen and (max-width: 900px){
  .main{
  display: flex;
  align-items: flex-start;
  }
  .main .article-card{
    display: none;
    width: 500px;
    
}
  .main .article-card.active{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main .article-card img{
    width: 500px;
  }
  .side{
  width: 600px;
  }
}
@media screen and (max-width: 700px){
  .main{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 1300px;
    overflow: auto;
    margin-left: 50px;
  }
  .main .article-card{
    width: 300px;
    opacity: 1;
    display: flex;
    text-align: left;
}
  .main .article-card.active{
    animation: unset;
  }
  .main .article-card img{
    width: 300px;
  }
  .side{
  display: none;
  }
}


/* 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 */