@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
*{ margin: 0; padding: 0;}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}





/* General Styles */
.footer {
   width: 100%;
   background-color: #121212;
   color: white;
 }
 
 .footer-container {
   max-width: 1140px;
   margin: 0 auto;
   padding: 0 15px;
 }
 
 .footer-links {
   margin-top: 3rem;
 }
 
 .footer-row {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   padding-top: 3rem;
 }
 
 .footer-col {
   flex: 0 0 16.66667%;
   max-width: 16.66667%;
   text-align: center;
   margin-bottom: 1rem;
 }
 
 .footer-heading {
   text-transform: uppercase;
   font-weight: bold;
 }
 
 .footer-link {
   color: white;
   text-decoration: none;
 }
 
 .footer-divider {
   margin: 3rem 0;
 }
 
 .footer-text {
   margin-bottom: 3rem;
 }
 
 .footer-col-lg {
   flex: 0 0 66.66667%;
   max-width: 100%;
   text-align: center;
 }
 
 .footer-paragraph {
   color: white;
 }
 
 .footer-social {
   text-align: center;
   margin-bottom: 3rem;
 }
 
 .footer-social-link {
   color: white;
   margin-right: 1.5rem;
   text-decoration: none;
 }
 
 .footer-social-link i {
   font-size: 1.5rem; /* Adjust icon size as needed */
 }
 
 .footer-copyright {
   text-align: center;
   padding: 1rem;
   background-color: rgba(0, 0, 0, 0.2);
 }
 
 .footer-copyright .footer-link {
   color: white;
 }
 
 /* Responsive Styles */
 @media (max-width: 1199px) {
   .footer-col {
       flex: 0 0 20%;
       max-width: 20%;
   }
 }
 
 @media (max-width: 991px) {
   .footer-col {
       flex: 0 0 25%;
       max-width: 25%;
   }
 }
 
 @media (max-width: 767px) {
   .footer-row {
       flex-direction: column;
   }
 
   .footer-col {
       flex: 0 0 100%;
       max-width: 100%;
       margin-bottom: 1rem;
   }
 
   .footer-social-link {
       margin-right: 0;
       margin-bottom: 1rem;
   }
 
   .footer-container {
       padding: 0 10px;
   }
 }
 

body{
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-content: flex-start;
    
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-smoothing: antialiased;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
  font-size: 15px;
  background: #eee;
}
.cd__intro{
   padding: 60px 30px;
   margin-bottom: 15px;
        flex-direction: column;

}
.cd__intro,
.cd__credit{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #000000;
    line-height: 1.5;
    text-align: center;
}

.cd__intro h1 {
   font-size: 8pt;
   padding-bottom: 15px;

}
.cd__intro p{
   font-size: 25px;
}

.cd__action{
   text-align: center;
   display: block;
   margin-top: 20px;
}

.cd__action a.cd__btn {
  text-decoration: none;
  color: #666;
   border: 2px solid #666;
   padding: 10px 15px;
   display: inline-block;
   margin-left: 5px;
}
.cd__action a.cd__btn:hover{
   background: #666;
   color: #fff;
    transition: .3s;
-webkit-transition: .3s;
}
.cd__action .cd__btn:before{
  font-family: FontAwesome;
  font-weight: normal;
  margin-right: 10px;
}
.down:before{content: "\f019"}
.back:before{content:"\f112"}

.cd__credit{
    padding: 12px;
    font-size: 9pt;
    margin-top: 40px;

}
.cd__credit span:before{
   font-family: FontAwesome;
   color: #e41b17;
   content: "\f004";


}
.cd__credit a{
   color: #333;
   text-decoration: none;
}
.cd__credit a:hover{
   color: #1DBF73; 
}
.cd__credit a:hover:after{
    font-family: FontAwesome;
    content: "\f08e";
    font-size: 9pt;
    position: absolute;
    margin: 3px;
}
.cd__main{
  background: #fff;
  padding: 20px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  
}
.cd__main{
    display: flex;
    width: 100%;
}

@media only screen and (min-width: 1360px){
    .cd__main{
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto; 
      padding: 24px;
    }
}