/********** Template CSS **********/
 /* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap'); */
 /* @import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap'); */
 /* @import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap'); */
 @import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');

 body{
    font-family: "Syne", sans-serif;
	font-size:16px;
	/*color:black; */
}
section{
     padding-left: 40px;
     padding-right: 40px;
}
:root {
    --primary: #E31E24;
    --secondary: #E31E24;
    --light: #E31E24;
    --dark: black;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    color: var(--primary);
    background: transparent;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar{
    background-color:black;
    color:blue;
    height:80px;
    /* max-height:80px; */
    /* border:2px solid green; */
}
.fixed-top {
    transition: .5s;
}

.tbd-hdr-alink{
    color:#fff;
}

.tbd-hdr-alink:hover{
    color:#E31E24;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: var(--dark);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 29, 35, .8);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 12px solid var(--dark);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: linear-gradient(rgba(0, 29, 35, .8), rgba(0, 29, 35, .8)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Causes ***/
.causes-item .progress {
    height: 5px;
    border-radius: 0;
    overflow: visible;
}

.causes-item .progress .progress-bar {
    position: relative;
    overflow: visible;
    width: 0px;
    border-radius: 0;
    transition: 5s;
}

.causes-item .progress .progress-bar span {
    position: absolute;
    top: -7px;
    right: 0;
    width: 40px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: var(--primary);
    color: #FFFFFF;
}

.causes-item .causes-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.causes-item:hover .causes-overlay {
    height: 100%;
    opacity: 1;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
}


/*** Donate ***/
.donate {
    background: rgba(0, 29, 35, .8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
    color: var(--primary);
    border-color: var(--primary);
}


/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 100px;
    transition: .5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

/*Start Index section*/
/*
.tbd-heading {
    font-family: 'Poppins', sans-serif;
}*/

/*start banner section    */

#tbd-banner{
    /* margin:1px 0 0 0; */
    height: 390px;
    width:100%;
    /* border:1px solid red; */
    /*margin-top:-100px;*/
}   


.video-container {
    /* position: relative; */
    width: 100%;
    height:100%;
    /* border:1px solid green; */
    overflow: hidden;
    /* margin-top:-55px; */
} 

#bg-video {
    /* position: absolute; */
    top: 0;
    left: 0;
    /*min-width: 100%;*/
    /*min-height: 100%;*/
    /*margin-left:-110px;*/
    height:100%;
    width:100%;
    /* z-index: -1; */
}

.video-bg-con{
    height:100%;
    width:100%;
    display: block;
    margin: 0 auto;
}
.content {
    position: relative;
    z-index: 1;
    /*text-align: center;*/
    color: #fff;
    padding:0px 0 0px 0;
    margin:110px 20px 0px 0;
   

}

.tbd-form{
    float:right;
    padding:10px 10px 10px 10px;
    font-size:19px;
    width:260px;
    height:340px;
    border:1px solid rgba(0, 0, 0, 0.3);
    background-color: rgba(0, 0, 0, 0.3);
    /*background-color:#243463;*/
}

.tbd-form:hover{
    border:1px solid rgba(0, 0, 0, 0.4);
    background-color: rgba(0, 0, 0, 0.4);
}

.tbd-form-heading{
    color:#fff;
    font-size:20px;
    text-align: center;
    font-family: "Syne", sans-serif;
    font-weight:bold;
    padding:10px 0 0 0;
}
.tbd-input{
    width:100%;
    background-color:#fff;
    border:2px solid #fff;
    color:black;
    font-size:15px;
    font-family: "Syne", sans-serif;
    padding:0 10px 0 10px;
    border-radius:5px;
}
.btn-submit{
    width:100%;
    color:#fff;
    background-color:#E31E24;
    border:2px solid #E31E24;
}

.btn-submit:hover{
    width:100%;
    color:#fff;
    background-color:red;
    border:2px solid #E31E24;
}

.tbd-input-name{
    color:#fff;
    height:30px;
    width:100%;
    font-size:16px;
    padding:10px 0 10px 0;
    margin:1px 0 5px 0;
    text-align: left;
}
/*end banner section    */   

/* Start Magazine */

#ma_1{
    margin-top: 300px;
    /* border: 1px solid black; */
    font-family: "Syne", sans-serif;

}
#sec-mag{
   /* border:1px solid orangered; */
   display: flex;
   height:500px;
   width:100%;
   /* margin-top: 2%; */
   /* margin-right: 2%; */
   /* margin-left: 2%; */
   /* margin-right: 20px; */
   align-items: center;  
   /* margin-left: 20px;  */
} 

#mag-top{
    height: 400px;
    margin-bottom : 2%;
    /* width: 150px;
    align-items: center; 
    /* display: flex; */
    /* border: 1px solid black; */
}
#text-0{
    align-items: center;
    margin-left: 4%;
    /* border: 1px solid yellow; */

} 
#text-00{
    font-size: 18px;
    margin-left: 1%;
    text-align: center;
    /* border: 1px solid yellow; */
}
.img-sector{
    /* height: 100%; */
    width: 90%;
    padding: 3%;
    border-radius: 7%;
    /* border: 1px solid white; */
    align-items: center;
    margin-left: 2%;
    margin-top: 5px;
    /* margin-right: 40px; */
}
 
.text-12{
    /* border: 1px solid  green; */
    margin-left: 3%;
}

#text-01{
    /* box-shadow: inset 5px 5px 85px 2px rgb(193, 183, 183);  */
    border-radius: 5%;
    margin-top: 5px;
    /* border: 1px solid  black; */
    text-align: center;
    width: 70%;
}
/* End Magazine */

/*start tbd-award-media*/
#past_event_detail{
    font-size:14px;
    height:80px; 
    background-color: #00004d; 
    border-radius: 20px; 
    margin-top: 10px; 
    color:white;
    padding-top: 10px;
}
#upcoming_event_detail{
    font-size:20px;
    height:80px; 
    background-color: #00004d;
    border-radius: 20px;
    margin-top: 10px; 
    color:white;
    padding-top: 20px;
}
#con_1{
    width:100%;
    display: flex; 
    margin-top: 30px;
    font-family: "Syne", sans-serif;
}
 #itop{            /* col-sm-3  */
    margin: 10px;
    height: auto;
    /* border: 2px solid green; */
}
.itop1{            /* img  */
    width: 100%; 
    height: 350px;
    border-radius: 20px 20px 20px 20px;
    padding: 5px;
    border: 1px solid rgba(86, 160, 216, 0.9);
    box-shadow: inset 5px 0px 5px rgba(86, 160, 216, 0.9);
    /* background-color: rgb(209, 204, 204); */
}


@media only screen and (max-width: 480px) {
    .itop1 {
        height: 500px !important;
        /* width: 370px !important; */
    }
}

@media only screen and (max-width: 482px) and (min-width: 575px) {
    .itop1 {
        height: 500px !important;
        /* width: 450px !important; */
    }
}

@media only screen and (max-width: 576px) and (min-width: 685px) {
    .itop1 {
        height: 500px !important;
        /* width: 195px !important; */
    }
}

/*end tbd-award-media*/


/* Start Bottom Text 
#b-text{
    width: 100%;
    height: 40%;
    margin-top: 3%;
    display: flex;
    background: rgba(250,188,165,255);
}
.bot-text h2{
    font-family: "Syne", sans-serif;
    padding-top: 2%;
    margin-left: 2%;
    font-size: 45px;
    font-weight: 600;
    color: black;
}
.bot-text h6{
    font-family: "Syne", sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin-left: 2%;
    padding-top: 2%;
    color: black;
}
@media only screen and (max-width: 344px){
    #b-text{
        width: 362px;
        height: 30%;
    }
 }
 End Bottom Text */

/* Start Our Bussiness */
#our-buss{
    height: auto;
    width: 100%;
    display: flex;
    /* margin-top: 2%; */
    /* border: 2px solid black; */
}
.parr{
    height: auto;
    width: auto;
    margin: 1px solid blue ;
    
}
#our-buss h2{
    color: red;
    /* margin-top: 1%; */
    font-size: 36px;
    font-weight: 480;
    font-family: "Syne", sans-serif;
}
#join-tbd{
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    margin-left: 9%;
    /* border: 1px solid ; */
    font-family: "Syne", sans-serif;
}                           



/* End Our Bussiness */

#blog{
    /* display: flex; */
    background-color: rgba(12,12,12,255);
    /* border: 1px solid red; */
}

/* Start Earnings */
#winner{
    display: flex;
    height: auto;
    /* margin-left: 2%; */
    /* border: 1px solid  orange; */
    background-color: rgba(12,12,12,255);
    margin-bottom: 40px;
    padding-bottom: 1%;
}
#win-1{
    /* border: 1px solid brown; */
    height: auto;
    width: 50%;
    float: left;
}
#win-1 h1{
    
    color: #fff;
    margin-left: 2%;
    margin-top: 2%;
    /* border: 1px solid red; */
    font-family: "Syne", sans-serif;
}
#win-1 p{
    color: #fff;
    margin-left: 2%;
    font-size: 18px;
    font-family: "Syne", sans-serif;
    /* border: 1px solid blueviolet; */
}
#win-2{
    /* border: 1px solid brown; */
    height: auto;
    width: 50%;
    display: flex;
    /* float: right; */
    margin-top: 1%;

}
.left{
    height: 500px;
    width: 33%;
    /* margin-right: 30px; */
    /* display: flex; */
    /* border: 1px solid white; */
}
.box-1{
    height: 150px;
    width: 100%;
    margin-top: 50px;
    border-radius: 10px 10px 10px 10px;
    border: 1px solid white;
}
 .box-2{
    height: 150px;
    width: 100%;
    margin-top: 120px;
    border-radius: 10px 10px 10px 10px;
    border: 1px solid white;
} 
.middle1
{
    height: 500px;
    width: 33%;
    margin: 20px;
    /* border: 1px solid green; */
}
.box-3{
    height: 150px;
    width: 100%;
    margin-top: 160px;
    border-radius: 10px 10px 10px 10px;
    border: 1px solid white;
}
.right{
    height: 500px;
    width: 33%;
    /* display: flex; */
    /* border: 1px solid orange; */
}
.box-4{
    height: 150px;
    width: 100%;
    margin-top: 50px;
    border-radius: 10px 10px 10px 10px;
    border: 1px solid white;
}
.box-5{
    height: 150px;
    width: 100%;
    margin-top: 120px;
    border-radius: 10px 10px 10px 10px;
    border: 1px solid white;
}

/* End Earnings */

/* Start Our Offers */
/* #off{
    height: 250px;
    width: 200px;
    float: left;
    margin: 49px;
    margin-top: 0; */
    /* display: flex; */
    /* border: 1px solid; */
    /* background-color: black; } */   
/* End Our Offers */

/* Start Content Form */
#whole{
    height: 550px;
    width: auto;
    margin-top: 50px;
    /* background-color: yellow; */
    /* margin-left: 20px;
    margin-right: 20px; */
    /* margin: 20px 20px 20px 20px; */
    /* border: 1px solid black; */
}
#top-1{
    background-color: rgba(245,245,245,255);
    width: 95%;
    height: auto;
    border-radius: 30px 30px 30px 30px;
    margin: 4% 4% 2% 4%;
    /* border: 2px solid blue; */
}
#downform {
    border: 2px solid #000;
    filter: drop-shadow(5px 5px);
    height: auto;
    /* width: auto; */
    border-radius: 20px;
    background-color: #fff;
    margin-top: 50px;
    margin-bottom: -50px;
    margin-right: 50px;
}
@media only screen and (max-width: 600px){
    #downform {
        border: 5px solid #000;
        height: auto;
        width: auto;
        border-radius: 50px;
        background-color: #fff;
        margin-top: 50px;
        margin-bottom: -50px;
    }
}


#tab{
    padding: 30px 30px;
    /* margin-right: 30px; */
    /* border: 1px solid red; */
}
.design_0{
    font-weight: 600;
    font-size: 24px;
    font-family: "Syne", sans-serif;
    margin-left: 36px;
}
.design_1{
    font-weight: 500;
    font-family: "Syne", sans-serif;
    font-size: 18px;
}
.design{
    font-weight: 600;
    font-family: "Syne", sans-serif;
    font-size: 30px;
}
.design_2
{
    margin-left: 35px;
    margin-top: 20px;
    font-size: 30px;
    color: black;
    font-family: "Syne", sans-serif;
}
.first{
    height: 50px;
    width: 80%;
    margin-top: 15px;
    margin-left: 30px;
    /* border: 1px solid; */
}
.second{
    height: 50px;
    width: 80%;
    margin-top: 15px;
    margin-left: 30px;
    /* border: 1px solid; */
}
.third{
    height: 50px;
    width: 80%;
    margin-top: 15px;
    margin-left: 30px;
    /* border: 1px solid; */
}
.fourth{
    height: 50px;
    width: 80%;
    margin-top: 15px;
    margin-left: 30px;
    /* border: 1px solid; */
}
.sub
{
    height: 50px;
    width: 80%;
    margin-top: 15px;
    margin-left: 30px;
    /* border: 1px solid; */
    /* background-color: black;    */
}

/* End Content Form */

/*start business*/
#tbd-business{
  text-align: center;
  height:800px;
  width:100%;
  padding:10px 100px 10px 100px; 
}
.businesscard{
   height:300px;
    width:300px;
    border:1px solid #F5f5f5;
    background-color:#fff;
    box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.1);
    border-radius:10px;
    margin:20px 10px 10px 10px;
    display: inline-block;
 
}

.tbd-bussiness-card-image{
    height:85px;
    width:85px;
    margin:10px 0 20px 0;
     background-color:transparent;
   
}
.tbd-buss-img-card{
    height:100%;
    width:100%;
     background-color:transparent;
}
.tbd-business-heading{
    margin:10px 0 20px 0;
    font-family: "Syne", sans-serif;
}

.tbd-business-pragraph{
    font-family: "Syne", sans-serif;
    font-size:11px;
    color:black;
}
/*end our-business*/

/*start about*/
#about{
  height:650px;
  width:100%;
  padding:50px 10px 10px 10px;
  text-align: center;
  background-color:#d5d5d5;
}

.tbd-about-heading{
    margin-top:10px;
    color:black;
    padding-left:40px;
    font-weight:bold;
}

.tbd-about-pra{
    font-size:14px;
    line-height:28px;
    color:#000;
    text-align:justify;
    font-family: "Syne", sans-serif;
    margin-top:40px;
}

.tbd-about-li{
    padding-left:100px;
    width:50%; 
    float:left;
    list-style-type: none;
}

.tbd-about-li2{
  width:50%; 
  padding:0 0 0 20px;
  list-style-type: none;
  float:left;  
}

.tbd-about-right-li{
   
    height:160px; 
    width:250px; 
    background-color:#E31E24;
    color:#fff;
    float: left;
    margin:10px 3px 5px 3px;
    padding:20px 20px 20px 20px;
    border-radius:10px;
    border:1px solid #fff;
    display: inline-block;

}

/*end about*/

/*start offer */
#offer{
  height:300px;
  width:100%;
  padding:10px 30px 10px 30px;
  text-align: center;
  /*background-color:#f1f1f1;*/
}
.tbd-offer{
    height:150px;
    width:150px;
    background-color:#E31E24;
    border-radius:1px solid #E31E24;
    border-radius:50%;
    margin:20px 20px 10px 20px;
    display: inline-block;
}
/*end offer*/

/*start blog*/
#tbd-blog{
  text-align: center;
  height:500px;
  width:100%;
  padding:10px 30px 10px 30px;
  background-color:#d5d5d5;
}
.tbd-blog{
    height:350px;
    width:250px;
    background-color:#243463;
    margin:20px 10px 10px 10px;
    display: inline-block;
    
}
/*end blog*/

/*start news*/
#news{
  text-align: center;
  height:200px;
  width:100%;
  padding:10px 30px 10px 30px; 
  background-image: url('/script/assets/img/slide/01.jpg');
  margin:5px 0 -40px 0;
}
ul{
     display: inline-block;
}
.tbd-new-left{
    width:50%;
    height:100%;
    color:#fff;
    list-style-type: none;
    padding:10px 10px 10px 10px;
    float:left;
     
}

.tbd-news-heading{
    color:#fff;
}
.tbd-new-right{
    width:50%;
    height:100%;
    color:#fff;
    list-style-type: none;
    padding:60px 5px 1px 5px;
     float:left;

}
.tbd-new-pra{
    font-size:15px;
    color:#fff;
    text-align: justify;
}
 .btn-news-submit{
     width:120px; 
     height:40px; 
     color:#fff;
     background-color:#E31E24;
     border-radius:2px;
     border:1px solid #E31E24;
 }
 .btn-news-submit:hover{
     background-color:red;
 }
 .tbd-news-input{
   padding-left:20px; 
   width:400px;
   height:40px; 
   border-radius:2px;
   border:1px solid #fff;
 }
/*end news*/


/*End index section*/



/* start magazine */
#tbd-Magazine{
    /* display:fix; */
    margin-top:-50px;
    background-color:#f0eeee;
    color:black;
}
#tbd-Magazineee{
    /* display:fix; */
    /* margin-top:30%; */
    height: auto;
    width: 100%;
    border: 1px solid #f0eeee;
    background-color:#f0eeee;
    color:black;
}
/* end magazine */
/*start manuf-sec*/
#manuf-sec{
    height:800px;
    width:100%;

}
/*end manuf-sec*/



/*** Footer ***/

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,0.5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255,255,255,0.5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.5);
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: var(--primary);
}