@import url("https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap");

:root {
  --primary-font: "Hind Siliguri";
  --primary-color: #002c53;
  --secondary-color: #f0c456;
  --last-color: #ffa155;
  --bg-color: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--primary-font);
}

/* Topbar Start */
#topbar {
  background: var(--primary-color);
}
.topbar_content {
  display: flex;
  margin: 10px 0px;
  gap: 10px;
  flex-direction: row;
}
.topbar_content_address {
  display: flex;
  gap: 5px;
  font-family: var(--primary-font);
  align-items: center;
}

.topbar_content_address a {
  font-size: 19px;
  color: #fff;
  text-decoration: none;
  font-family: var(--primary-font);
}
.topbar_content_address a img {
  margin-top: 3px !important;
}

.border-left {
  border-right: 1px solid #fff;
  padding-right: 10px;
}
.topbar_content_address img {
  width: 25px;
}
.topbar_imgs {
  padding-top: 5px !important;
}
.topbar_img img {
  width: 35px !important;
}

@media screen and (max-width: 1000px) {
  .topbar_content {
    flex-direction: column;
  }
}

@media screen and (max-width: 990px) {
  #topbar {
    display: none;
  }
}

/* Topbar End */

/* Branding Header Start  */
#header {
  background: url(../image/web_bd_bg.png);
  padding: 20px 0px;
  margin: 0px;
  background-repeat: repeat;
}


.header_border_right {
  border-right: 1px solid #000000;
  padding-right: 10px;
  display: inline-block;
}


.header_logo {
  position: absolute;
}
.header_logo img {
  width: 180px;
  height: 180px;
  z-index: 999;
}


.header_wapper {
  position: relative;
}


.header_content h1 {
  font-weight: 800;
  font-size: 40px;
  line-height: 50px;
  text-align: center;
  color: var(--primary-color);
  font-family: var(--primary-font);
}


.header_content h2 {
  font-size: 27px;
  line-height: 35px;
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-weight: 800;
  text-align: center;
}

.header_content p {
  font-size: 18px;
  line-height: 30px;
  color: var(--primary-color);
  font-family: var(--primary-font);
  text-align: center;
  font-weight: 800;
}

.header_content_heading {
  display: flex;
  justify-content: center;
}

.header_content_heading_address a {
  text-decoration: none;
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 800;
}

@media screen and (max-width: 1200px) {
  .header_content h2 {
    font-size: 20px;
  }
  .header_content h1 {
    font-size: 30px;
  }
}

@media screen and (max-width: 1030px) {
  .header_content h2 {
    font-size: 16px;
  }
  .header_content h1 {
    text-align: center;
    font-size: 25px;
    line-height: 30px;
  }
}


@media screen and (max-width: 990px) {
  .header_logo {
   position: relative;
  }
  .header_logo img {
display: block;
margin: auto;
width: 140px;
height: 140px;
  }
}

@media screen and (max-width: 780px) {
  .header_content {
    margin-top: 20px;
  }
  .header_content h2 {
    font-size: 20px;
    text-align: center;
    margin-left: 0px !important;
  }
  .header_content h1 {
    text-align: center;
    font-size: 25px;
    line-height: 30px;
  }
}

@media screen and (max-width: 600px) {
  .header_logo {
   position: relative;
  }

  .header_logo img {
display: block;
margin: auto;
width: 140px;
height: 140px;
  }

} 

@media screen and (max-width: 500px) {
  .header_content h2 {
    font-size: 16px;
    line-height: 20px;
  }

  .header_content h1 {
    text-align: center;
    font-size: 20px;
    line-height: 25px;
  }

  .header_content p {
    text-align: center;
    font-size: 12px;
  }

}

@media screen and (max-width: 400px) {
  .header_content h1 {
    text-align: center;
    font-size: 18px;
    line-height: 25px;
  }

  .header_content p {
    text-align: center;
    font-size: 12px;
  }

  .header_content_heading_address a {
    font-size: 14px !important;
  }

}


@media screen and (max-width: 400px) {
  .header_content_heading_address a {
    font-size: 16px;
  }
}

/* Branding Header End */


/* Navbar Start */

#navbar {
  background-color: #ffa155 !important;

}


.nav_items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;

}

.nav_items li a {
  cursor: pointer;
  font-size: 20px !important;
  font-family: var(--primary-font);
  font-weight: 800;
}

.nav_items li {
  position: relative;
  padding: 15px 0 !important;
}

.nav_items ul {
  opacity: 0;
  position: absolute;
  top: 160%;
  visibility: hidden;
  transition: 0.2s ease;
  -webkit-transition: 0.3s ease;
  background: url(../image/Group\ 291.png), rgb(255, 255, 255);
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: start;
  width: 250px;
  display: block;
  border-top: 3px solid var(--primary-color) !important;
  z-index: 999 !important;
}

.nav_items li:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
  display: block;
}

.nav_items ul li {
  padding: 0 !important;
  border-left: 2px solid var(--bg-color);
  transition: .5s ease-in-out;

}
.nav_items ul li:hover {
  padding: 0 !important;
border-left: 2px solid var(--primary-color);
}

.nav_items ul li a {
  width: 100%;
  font-weight: 500;
  color: #000000;
  z-index: 999 !important;
  font-size: 16px !important;
  text-decoration: none !important;
  transition: .5s ease-in-out;
}
.nav_items ul li a:hover{
  width: 100%;
  font-weight: 500;
  color: var(--primary-color);
  z-index: 999 !important;
  font-size: 16px !important;
  text-decoration: none !important;
}

.nav_items li a img {
  width: 10px;
  margin-left: 5px;
}

.nav_items li a {
  text-decoration: none;
  display: block;
  color: var(--primary-color);
  padding: 10px 8px;
  margin: 0 !important;
}

.nav-item .nav-link {
  margin: 0 !important;
}

.nav_items li ul li:hover {
  opacity: 999 !important;
}

.nav_items li ul li a:hover {
  text-decoration: none !important;
}

.nav_toggle_btn {
  display: block;
  width: 50px;
  margin: auto;
  padding: 20px 0;
  cursor: pointer;
  text-align: center;
  display: none;
}

.nav_toggle_btn i {
  color: var(--bg-color);
  font-size: 1.6em;
}


@media screen and (max-width: 1200px) {
  .nav_items li a {
    font-size: 16px !important;
  }
  .nav_items ul {
    width: 170px;
  }

}

@media screen and (max-width: 1300px) {
  .nav_items li a {
    font-size: 16px !important;
  }
  .nav_items ul {
    width: 200px;
  }

}
@media screen and (max-width: 1050px) {
  .nav_items li a {
    font-size: 16px !important;
  }
  .nav_items ul {
    width: 150px;
  }

}

@media screen and (max-width: 990px) {
  .nav_toggle_btn {
    display: block;
  }

  .nav_items {
    display: block;
    visibility: hidden;
    height: 0;

    z-index: 9999 !important;
  }

  .nav_items.active {
    visibility: visible;
    height: auto;
  }
  .nav_items ul {
    width: 250px;
  }
}

/* Navbar End */

/* Hero Start */
#admissison_hero {
    background: url(../image/bg_admission_form.png);
    width: 100%;
    height: 50vh;
    background-position: cover;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}
.admissison_hero_content {
    display: flex;
    justify-content: center;
    align-items: center;
   
}
.admissison_hero_content h1 {
    margin-top: 15vh;
    color: var(--bg-color);
}

.admissison_hero_img_line  {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.admissison_hero_img_line img{
width: 350px;
}

@media screen and (max-width: 500px) {
  .admissison_hero_img_line img{
    width: 300px;
    }
 
}
@media screen and (max-width: 400px) {
  .admissison_hero_img_line img{
    width: 250px;
    }
  }
/* Hero End */

/*  Admissison Page Start */

#admissison_page {
    background-image: url(../image/web_bd_bg-01.png);
    background-position: cover;
    padding: 20px 0;
}

.admissison_page_content {
    border: 1px solid var(--primary-color);
    width: 100%;
    background: var(--bg-color);
    padding: 25px;
}

.admissison_content_heading h1{
    font-size: 25px;
    font-weight: 800;
    color: var(--primary-color);
    display: inline-block;
    border-bottom: 2px solid var(--primary-color);
}

/* Academic Details Start */
.academic_Details_heading {
    display: flex;
    flex-direction: row;

    justify-content: space-between;
}

.academic_Details_heading_text h1 {
    font-size: 21px;
    font-weight: 800;
    color: rgba(206, 133, 34, 1);
 
}
.academic_Details_heading_text {
    width: 190px;
}

.academic_Details_heading_line {
    border: 1px solid rgba(150, 150, 150, 1);
   width: calc(100% - 190px);
    height: 0;
}

.academic_details_content_name label {
    font-size: 20px;
    color: #000000;
    font-weight: 800;
}

.academic_details_content_name input {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}

.academic_details_content_class label {
    font-size: 20px;
    color: #000000;
    font-weight: 800;
}

.academic_details_content_class select {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
    background: none !important;
}

.academic_details_content_class  select option:nth-child(1):hover{
  border-left: 1px solid var(--primary-color) !important;
  background-color: red;
}

.academic_details_content_section label{
    font-size: 20px;
    color: #000000;
    font-weight: 800;
}

.academic_details_content_section select {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}

.academic_details_content_date label {
    font-size: 20px;
    color: #000000;
    font-weight: 800;
}

.academic_details_content_date input {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}

.academic_details_content_category label {
    font-size: 20px;
    color: #000000;
    font-weight: 800;
} 

.academic_details_content_category select {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}

@media screen and (max-width: 1200px) {
    .academic_Details_heading  {
   flex-direction: column;
    }
    .academic_Details_heading_line {
        width: 100%;
        margin-top: 0px !important;
    }
  }

/* Academic Details End */

/* Students Details Start */
.academic_Details_heading {
    display: flex;
    flex-direction: row;

    justify-content: space-between;
}


.students_details_from_content_photo {
    width: calc(100% - 80px);
    aspect-ratio: 1/1;
}

.students_details_from_content_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.students_details_from_content_text  {
    width: 80px;
    text-align: center;
}

.students_details_from_content_text p {
   margin-bottom: 0;
}

.student_from_content {
    margin-top: 120px ;
}

.students_details_form_name label{
    font-size: 20px;
    color: #000000;
    font-weight: 800;
}

.students_details_form_name input {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}

.students_details_from_img {
    border: 1px solid rgba(150, 150, 150, 1);
    width: 100%;

    padding: 20px;
}

.students_details_from_content {
    display: flex;
  align-items: center;
}


.students_details_from_content_photo_btn {
    align-items: center;
    display: flex;
}

.students_details_from_content_photo_btn input{
    display: none;
}

.students_details_from_content_photo_btn label {
    padding: 10px;
    display: block;
    margin: auto;
    border: 1px solid rgba(150, 150, 150, 1);
    width: 100%;
    text-align: center;
}

.students_details_form_brithday label {
    font-size: 20px;
    color: #000000;
    font-weight: 800;
}

.students_details_form_brithday input {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}

.students_details_form_gender label {
    font-size: 20px;
    color: #000000;
    font-weight: 800;
}

.students_details_form_gender select {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}


@media screen and (max-width: 990px) {
    .student_from_content {
    margin-top: 30px;
    }
  }

/* Students Details End */

/* Student About YourSelf Start */
.blood_group label {
    font-size: 20px;
    color: #000000;
    font-weight: 800;
}

.blood_group select {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}

.religion label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}

.religion select {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}

.student_phn_number label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}

.student_phn_number input {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}

.email label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}

.email select {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}


.mother_tongue label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}

.mother_tongue input {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}
.nid_card label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}

.nid_card input {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}

.present_address label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}
.present_address textarea{
    font-size: 16px;
    width: 100%;
    outline: none;
    aspect-ratio: 2/1;
    padding: 10px;
}
.permanent_address label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}
.permanent_address textarea{
    font-size: 16px;
    width: 100%;
    outline: none;
    aspect-ratio: 2/1;
    padding: 10px;
}

.city label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}

.city select {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}

.state {
    margin-top: 50px;
}

.state label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}

.state select {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}

@media screen and (max-width: 990px) {
    .state {
    margin-top: 30px;
    }
  }
@media screen and (max-width: 1300px) {
    .state {
    margin-top: 40px;
    }
  }


/* Student About YourSelf End */

/* Previous Institute Details Start */
.previous_institute_heading {
    display: flex;
    flex-direction: row;

    justify-content: space-between;
}

.previous_institute_heading_text h1 {
    font-size: 25px;
    font-weight: 800;
    color: rgba(206, 133, 34, 1);
 
}
.previous_institute_heading_text {
    width: 300px;
}

.previous_institute_heading_line {
    border: 1px solid rgba(150, 150, 150, 1);
   width: calc(100% - 300px);
    height: 0;
}


.previous_institute_name label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}

.previous_institute_name input {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}

.qualification label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}

.qualification input {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}

.remarks label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}
.remarks textarea{
    font-size: 16px;
    width: 100%;
    outline: none;
    aspect-ratio: 2/1;
    padding: 10px;
}
/*  Previous Institute Details End  */

/* Guardian Details Start */
.guardian_details_heading {
    display: flex;
    flex-direction: row;

    justify-content: space-between;
}

.guardian_details_heading_text h1 {
    font-size: 25px;
    font-weight: 800;
    color: rgba(206, 133, 34, 1);
 
}
.guardian_details_heading_text {
    width: 300px;
}

.guardian_details_heading_line {
    border: 1px solid rgba(150, 150, 150, 1);
   width: calc(100% - 300px);
    height: 0;
}

.guardian_name label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}

.guardian_name input {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}

.relation label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}

.relation input {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}



.father_name label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}

.father_name input {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}
.mother_name label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}

.mother_name input {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}
.occupation label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}

.occupation input {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}
.income label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}

.income input {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}


.education label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}

.education input {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}


.guardian_e_mail label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}

.guardian_e_mail input {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}


.guardian_mobile label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}

.guardian_mobile input {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}


.guardian_address label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}

.guardian_address input {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}


.guardian_city label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}

.guardian_city select {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}
.guardian_state label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}

.guardian_state select {
    width: 100%;
    padding: 7px;
    outline: none;
    font-size: 16px;
}

.guardian_photo label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}

.guardian_photo input {
    width: 100%;
    padding: 8px;
    outline: none;
    font-size: 16px;
}

.guardian_photo_btn {
    align-items: center;
    display: flex;
}

.guardian_photo_btn input{
    display: none;
}

.guardian_photo_btn label {
    padding: 10px;
    display: block;
    margin-top: 5px;
    border: 1px solid rgba(150, 150, 150, 1);
    width: 100%;
    text-align: center;
    color: var(--primary-color);
    font-weight: 800;
}
/* Guardian Details End */

/* Upload Documents Start */
.upload_documents_heading {
    display: flex;
    flex-direction: row;

    justify-content: space-between;
}

.upload_documents_heading_text h1 {
    font-size: 25px;
    font-weight: 800;
    color: rgba(206, 133, 34, 1);
 
}
.upload_documents_heading_text {
    width: 250px;
}

.upload_documents_heading_line {
    border: 1px solid rgba(150, 150, 150, 1);
   width: calc(100% - 250px);
    height: 0;
}

.upload_document label{
    font-size: 20px;
    color: #000000;
    font-weight: 800; 
}

.upload_document input {
    width: 100%;
    padding: 8px;
    outline: none;
    font-size: 16px;
}

.upload_document_btn {
    align-items: center;
    display: flex;
}

.upload_document_btn input{
    display: none;
}

.upload_document_btn label {
    padding: 10px;
    display: block;
    margin-top: 5px;
    border: 1px solid rgba(150, 150, 150, 1);
    width: 100%;
    text-align: center;
    color: var(--primary-color);
    font-weight: 800;
}



.select_box_item input{
    width: 25px;
    height: 25px;
}

.select_box_item label{
    font-size: 20px;
    margin-left: 5px;
}

.select_box_item_text img{
    display: block;
    margin: auto;
    width: 50px;
}

.select_box_item_text h3 {
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
}
.select_box_item_text p {
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
}
.select_box_item_text p a {

    color: #000000;
}

.select_box_btn {
    display: flex;
    align-items: center;
    margin-top: 30px;
} 
.select_box_btn  button {
    border: 1px solid rgba(150, 150, 150, 1);
    font-size: 20px;
    background: rgba(206, 133, 34, 1);
    color: var(--bg-color);
    width: 100%;
    padding: 15px;
}

@media screen and (max-width: 1300px) {
    .select_box_btn {
    margin-top: 50px;
    }
  }
@media screen and (max-width: 990px) {
    .select_box_btn {
    margin-top: 10px;
    }
  }
/* Upload Documents End */
/*  Admissison Page End */

/* Footer Start */
#footer {
  background: url(../image/footer_background_img_01.png), rgb(255, 229, 175);
  padding: 40px;
}

.footer_content_icon_img img {
  display: block;
  margin: auto;
  width: 180px;
  height: 180px;
}

.footer_content_icon_pragraph p {
  width: 280px;
  text-align: center;
  font-weight: 500;
  font-size: 19px;
  margin: auto;
}

.footer_content_menu_icon {
 display: block;
margin: auto;
text-align: center;
justify-content: center;


}

.footer_content_menu_icon a {
  width: 45px;
  height: 45px;
  margin-left: 10px;
  display: inline-block;
  border: 1px solid var(--primary-color);
  text-decoration: none;
  transition: 0.5s ease-in-out;
}

.footer_content_menu_icon a i {
  display: block;
  text-align: center;
line-height: 45px;
align-items: center;
font-size: 25px;
}

.footer_content_menu_icon a:hover {
  background: linear-gradient(
    120deg,
    rgba(0, 44, 83, 1),
    rgba(206, 133, 34, 1)
  );
  border: 1px solid transparent;
}

.footer_content_menu_icon a:hover .fa-brands {
  color: #ffff !important;
}

@media screen and (max-width: 780px){
  .footer_content_icon_img img {
    display: inline-block;
  }
  .footer_content_icon_pragraph p {
    text-align: start;
    margin: 0;
  }
.footer_content_menu_icon {
  display: inline-block;

}

.footer_content_menu_icon a {
  margin-left: 5px;
  margin-top: 20px;
}

}

.footer_address_heading h1 {
  font-size: 30px;
  font-weight: 800;
}

.footer_address_menu {
  display: flex;
gap: 10px;
}

.footer_content_page_heading img {
  padding: 0;
  margin: 0;
}

.footer_address_img a{
  width: 35px;
  height: 35px;
  display: inline-block;
  text-align: center;
  justify-content: center;
  line-height: 35px;
  border: 1px solid var(--primary-color);
}

.footer_address_img img {
  width: 22px;

}

.footer_address_text h2 {
  font-size: 18px;
  font-weight: 800;
line-height: 35px;
  color: var(--primary-color);
}

@media screen and (max-width: 1200px){
  .footer_address_text h2 {
    font-size: 15px;

  }

}
@media screen and (max-width: 1015px){
  .footer_address_text h2 {
    font-size: 14px;

  }
  .footer_address_heading h1 {
    font-size: 25px;
  }
}
@media screen and (max-width: 990px){
  .footer_address_text h2 {
    font-size: 16px;

  }
  .footer_address_heading h1 {
    font-size: 25px;
  }
}

.footer_content_page_heading h1 {
  font-size: 30px;
  font-weight: 800;
}

.footer_page_content_img {
  position: relative;
}

.institution_gallery_content_img_overlay h2 {
  padding-top: 25px;
  padding-left: 25px;
  font-size: 20px;
  color: var(--bg-color);
  font-weight: 800;
}

.footer_page_content_img_overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  width: 100%;
  background: rgba(0, 44, 83, 0.5);
  height: 0;
  transition: 0.5s ease-in-out;
}

.footer_page_content_img:hover .footer_page_content_img_overlay {
  height: 40%;
}

.footer_page_content_img_overlay {
  display: flex;
  gap: 20px;
}

.footer_page_content_img_overlay_logo img {
  width: 60px;
  margin-left: 10px;
}

.footer_page_content_img_overlay_text h2 {
  font-size: 16px;
  color: var(--bg-color);
  font-weight: 800;
}
.footer_page_content_img_overlay_text h2 a {
  font-size: 16px;
  color: var(--bg-color);
  font-weight: 800;
  transition:  .5s ease;
  text-decoration: none;
}
.footer_page_content_img_overlay_text h2 a:hover {
  font-size: 16px;
  color: var(--bg-color);
  font-weight: 800;
  transition:  .5s ease;
  text-decoration: underline;
}

.footer_page_content_img_overlay_text p {
  font-size: 14px;
  color: var(--bg-color);
  
}
.footer_page_content_img_overlay_text p a{
  font-size: 14px;
  color: var(--bg-color);
  transition:  .5s ease;
  text-decoration: none;

}
.footer_page_content_img_overlay_text p a:hover{
  font-size: 14px;
  color: var(--bg-color);
  transition:  .5s ease;
  text-decoration: underline;

}



@media screen and (max-width: 780px) {
  .footer_content_icon_img {
    width: 250px;
    margin: auto;
    display: inline;
  }
  .footer_content_icon_pragraph p {
    text-align: left;
  }
}

@media screen and (max-width: 1200px) {
  .footer_content_page_heading h1 {
    font-size: 25px;
  }
}

@media screen and (max-width: 450px) {
  .footer_page_content_img_overlay_logo img {
    width: 50px;
  }
  .footer_page_content_img_overlay_text h2 {
    font-size: 14px;
  }
}

/* Footer End */

/* Copy_Right Start */
#copy_right {
  background: rgba(31, 36, 41, 1);
  padding: 5px;
}
.copy_right_content h1 {
  display: block;
  font-size: 18px;
  text-align: center;
  justify-content: center;
  margin: 0px !important;
  color: var(--bg-color);
}
.copy_right_content h1 img {
  width: 20px;
  margin-right: 5px;
}
.copy_right_content p {
  padding: 0px !important;
  margin: 0px !important;
  font-size: 18px;
  color: var(--bg-color);
}

@media screen and (max-width: 400px) {
  .copy_right_content h1 {
    font-size: 15px;
  }
  .copy_right_content p {
    font-size: 14px;
  }
}
/* Copy_Right End */

/* Back To Top btn  */

body {
  position: relative;
}
html {
  scroll-behavior: smooth;
}
.gobtn {
  border: 2px solid var(--primary-color);
  text-align: center;
  position: fixed;
  width: 50px;
  height: 50px;
  line-height: 55px;
  bottom: 30px;
  right: 40px;
}
.gobtn:hover {
  background: linear-gradient(
    120deg,
    rgba(0, 44, 83, 1),
    rgba(206, 133, 34, 1)
  );
  border: 2px solid  transparent
  !important;
}

.gobtn i {
  color: #000000;
  font-size: 1.6em;
}

.gobtn:hover .fa-solid {
  color: var(--bg-color) !important;
  border-color: #fff;
}

.gobtn a {
  color: var(--bg-color);
}
/* Back To Top btn  */
