@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;500&display=swap');
/* Header Start */
body{
    font-family: poppins;
    background-color:#f2f2f2 !important;
}
header{
    margin-bottom: 50px;
    padding: 0px 100px;
    background: #FFF56D;
    box-shadow: 0.1px 0.1px 12px #aaaaaa;
}

.searchLink{
    color: #000000;
}
.searchLink:hover,.searchLink:focus{
    background-color: #ffd66d;
    color: #000000;
}
#searchContent{
    width: 15rem; 
/* margin:65px 100px; */
    margin:120px 100px;
}

/* Add appropriate styling for the close icon */
#closeIcon {
    cursor: pointer;
    display: none;
  }
  


.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #212122;
    outline: 0;
    box-shadow: 0 0 0 0.1rem rgba(0, 0, 0, 0.25);
}
.form-check-input:focus {
    border-color: #212122;
    outline: 0;
    box-shadow: 0 0 0 0.1rem rgba(0, 0, 0, 0.25);
}
.form-check-input:checked {
    background-color: #212122;
    border-color: #212122;
}

.btn-link {
    --bs-btn-font-weight: 400;
    --bs-btn-color: var(--bs-link-color);
    --bs-btn-bg: transparent;
    --bs-btn-border-color: transparent;
    --bs-btn-hover-color: var(--bs-link-hover-color);
    --bs-btn-hover-border-color: transparent;
    --bs-btn-active-color: var(--bs-link-hover-color);
    --bs-btn-active-border-color: transparent;
    --bs-btn-disabled-color: #6c757d;
    --bs-btn-disabled-border-color: transparent;
    --bs-btn-box-shadow: none;
    --bs-btn-focus-shadow-rgb: none
    text-decoration: underline;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #0d6efd;
    --bs-btn-border-color: #0d6efd;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0b5ed7;
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: none
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
}

.btn-danger {
    --bs-btn-color: #fff;
    --bs-btn-bg: #dc3545;
    --bs-btn-border-color: #dc3545;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #bb2d3b;
    --bs-btn-hover-border-color: #b02a37;
    --bs-btn-focus-shadow-rgb: none
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #b02a37;
    --bs-btn-active-border-color: #a52834;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #dc3545;
    --bs-btn-disabled-border-color: #dc3545;
}

a:link { 
    text-decoration: none; 
}
a:visited { 
    text-decoration: none; 
}
a:hover { 
    text-decoration: none; 
}
a:active { 
    text-decoration: none; 
}

.skip-link:active,.skip-link:focus {
    display: block;
    padding: 0.5rem;
    background: #e8b83f;
    text-align: center;
    color: #000000;
    border-bottom: 1px solid rgba(255,255,255,.2)
}

main{
    /* margin-top: 100px; */
    margin-top: 150px;
}

.navbar{
    padding: 0px;
}
.navbar-nav .nav-link{
     padding: 20px 15px !important;
     color: black; 
}
.nav-link:hover{
    background-color: #ffd66d;
}
.nav-link:focus, .nav-link:hover{
    color: black;
    background-color: #ffd66d;
}
.navbar-toggler:focus{
    box-shadow: none;
    font-family: poppins;
}
.dropdown-menu.show{
    padding: 10px;
    box-shadow: 0.1px 0.1px 5px #aaaaaa;
    border: none;
    background-color: #FFF56D;
    /* width: 50px; */
}
/* .dropdown-item{
    width: 50px;
} */
/* .dropdown-item {
    display: block;
    width: 50%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
} */

.dropdown-item:hover {
    background-color: #ffd66d;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: var(--bs-dropdown-link-hover-color);
    background-color: #ffd66d;
    border-radius: 5px;
}

@media(max-width:767px){
    header{
        padding: 10px 10px
    }
    .dropdown-menu.show{
        padding: auto;
        box-shadow: none;
        border: none;
    }
    .dropstart .dropdown-toggle::before{
        transform: rotate(-90deg);
    }
    .btn-default{
        margin-left: 0px;
    }
    .skip-to-content-link {
        text-decoration:none;
        color: #000000;
        left: 50%;
        position: absolute;
        transform: translateY(-120%);
    }
    .skip-to-content-link {
        background: #e8b83f;
        height: 50px;
        left: 20%;
        padding: 15px;
        position: absolute;
        transform: translateY(-120%);
        transition: transform 0.3s;
    }
      
    .skip-to-content-link:focus {
        transform: translateY(0%);
    }

    #searchContent{
        width: 23rem; 
        margin:390px 10px;
    } 

}
@media (max-width:576px) {
    .drpdown-item::before{
        transform: rotate(-90deg);
    }  
    #searchContent{
        width: 22rem; 
        margin:380px 3px;
    } 
}

@media(max-width:667px){
    #searchContent{
        width: 22rem; 
        margin:370px 12px;
    }
}

@media(max-width:896px){
    #searchContent{
        width: 22rem; 
        margin:370px 30px;
    }
}

/* @media(max-width:844px){
    #searchContent{
        width: 22rem; 
        margin:370px 20px;
    }
}

@media(max-width:740px){
    #searchContent{
        width: 20rem; 
        margin:370px 20px;
    }
}

@media(max-width:915px){
    #searchContent{
        width: 23rem; 
        margin:370px 20px;
    }
}

@media(max-width:1180px){
    .search{
        margin-bottom: 10px;
    }
    #searchContent{
        width: 30rem; 
        margin:355px 160px;
    }
}
@media(max-width:1024px){
    .search{
        margin-bottom: 10px;
    }
    #searchContent{
        width: 30rem; 
        margin:358px 140px;
    }
}
@media(max-width:1398px){
    .search{
        margin-bottom: 10px;
    }
    #searchContent{
        width: 35rem; 
        margin:358px 170px;
    }
}
@media(max-width:720px){
    .search{
        margin-bottom: 10px;
    }
    #searchContent{
        width: 25rem; 
        margin:370px 70px;
    }
}

@media(max-width:1280px){
    .search{
        margin-bottom: 10px;
    }
    #searchContent{
        width: 15rem; 
        margin:60px 100px;
    }
} */
/* Header end */

/* main start */

/* btn button start */

.p-btn{
    font-weight: 600;
}

.btn-default{
    background-color: #2F3E48;
    color:#FFF;
}
 
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default { 
    background-color: #000000;
    color:#FFF;
    border-color: #31347B;
}

/* btn button end */

.news-form{ 
    margin: 50px 0px;
}

.focus-only:focus {
    outline: 3px solid black;
    outline-offset: 2px;
}

.focus-disable:focus{
    outline: none;
}

/* footer style start */

.footer {
    
  position: relative;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 270px;
}

 footer {
  padding-top: 30px;
  background-color: #292c2f;
  color: #bbb;
}

footer a {
  color: #999;
  text-decoration:none;
}

footer a:hover, footer a:focus {
  color: #aaa;
  text-decoration:none;
  border-bottom:1px dotted #999;
}

footer .form-control {
    background-color: #1f2022;
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.1);
    border: none;
    resize: none;
    color: #d1d2d2;
    padding: 0.7em 1em;
} 

.foote_bottom_ul_amrc {
	list-style-type:none;
	padding:0px;
	display:table;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
}
.foote_bottom_ul_amrc li { 
    display:inline;
}
.foote_bottom_ul_amrc li a { 
    color:#999; margin:0 12px;
}

hr.foot-border {
    border-top: 1px solid #606c72;
}

.social_footer_ul { 
    display:flex;
    justify-content: center; 
    margin:15px auto 0 auto; 
    list-style-type:none;  
}
.social_footer_ul li { 
    padding-left:20px; 
    padding-top:10px; 
    float:left; 
}
.social_footer_ul li a { 
    color:#CCC; 
    border:1px solid #CCC; 
    padding:8px;
    border-radius:50%;
}
.social_footer_ul li i {  
    width:20px; 
    height:10px; 
    text-align:center;
}

/* footer style end here */
