/***********Common Css***********/
body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(49, 49, 49, 0.7);
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    font-weight: 400;
    background-color: #FAFAFA;
}

a {
    color: rgba(49, 49, 49, 0.7);
    text-decoration: none;
}

.container {
    max-width: 1280px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    box-sizing: border-box;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
    box-sizing: border-box;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.justify-between {
    justify-content: space-between;
}

.form-control {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 38px;
    width: 100%;
    height: 40px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 16px;
    color: #878787;
}

.form-control:focus-visible {
    outline: 1px solid rgba(0, 0, 0, 0.5);
}

.block {
    display: block;
}

img {
    width: 100%;
    display: block;
}

figure {
    margin: 0%;
}

.relative{ position: relative;}
.w-25{ width: 25%;}
.w-75{ width: 75%;}

/***********Header Css***********/
header {
    background-color: #0800B2;
    background-image:linear-gradient(135deg, #0800B2 0, #74FFCD 100%)
}

header nav {
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content:center
}

header nav #logo {
    display: inline-block;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    padding: 10px 0;
}

/***********Result Css***********/
.top-search-sec {
    padding: 16px 0;
}
.bx-link{    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; z-index: 1;}

.search-bx {
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    height: 100%;
}

.search-bx .search-img-bx {
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.search-bx img {
    border-radius: 8px 8px 0 0;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    min-height: 200px;
}

.search-bx:hover img {
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
}

.search-bx figcaption {
    padding: 15px;
    font-weight: 700;
    font-size: 18px;
    line-height: normal;
    color: rgba(7, 7, 7, 0.9);
}

.top-search-sec .col-4 {
    margin-bottom: 30px;
}


.search-bx-ne {
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    height: 100%;
}

.search-bx-ne .search-img-bx {
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.search-bx-ne img {
    border-radius: 8px 8px 0 0;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.search-bx-ne figcaption {
    padding: 15px;
    font-weight: 700;
    font-size: 18px;
    line-height: normal;
    color: rgba(7, 7, 7, 0.9);
}

/***********Mobile Menu***********/
#menuToggle {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.Menu-separator{
    border-top: 1px solid rgba(135, 139, 138, 0.2);
    margin: 15px 0 0;
}

#menuToggle a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: rgba(49, 49, 49, 0.7);
}

#menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;

    cursor: pointer;

    opacity: 0;
    /* hide this */
    z-index: 2;
    /* and place it over the hamburger */

    -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span {
    display: block;
    width: 33px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;

    background: #D9D9D9;
    border-radius: 3px;

    z-index: 1;

    transform-origin: 4px 0px;

    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
        background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
        opacity 0.55s ease;
}

#menuToggle span:first-child {
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked~span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #D9D9D9;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked~span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked~span:nth-last-child(2) {
    transform: rotate(-45deg) translate(-2px, 2px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu {
    position: absolute;
    width: 150px;
    right: -7px;
      top: -5000px;
    padding: 0;
    background: #FAFAFA;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    border-radius: 4px; border: 1px solid rgba(135, 139, 138, 0.2);
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out; z-index: 9;
}

#menu li {
    padding: 10px;
    margin: 0;
    font-size: 14px;
    color: rgba(49, 49, 49, 0.7);
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked~ul {
    top: 33px;
}
#menu h6 {
    padding: 15px 15px 10px;
    font-size: 18px;
    margin: 0;
    color: rgba(0, 0, 0, 0.6);
}

/***********V2 Index(With Left Menu)***********/
.left-nav{
    background-color: #E7E9ED;
    border-radius: 8px; margin-right: 30px;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    padding-bottom: 60px;
}
.left-nav ul li{ margin: 0 !important;}
.left-nav ul li a{
    padding: 15px 20px;
    display: block;
    color: #000000;
}
.left-nav ul li:hover a{ background-color: #EDEDED;}
.left-nav ul li.active a{
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    background-color: #EDEDED;
    border-left: 3px solid #BB86FC;
    color: #000000;
    border-color: #000000;
}
.top-search-w-left-menu .col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333333333333%;
    flex: 0 0 33.33333333333333%;
    max-width: 33.33333333333333%;
}

/* Search Item Height */
.search-item {
    min-height: 300px;
}

.related_search_topics {
    padding: 0 16px;
    margin: 0 auto;
    font-size: 14px;
    text-align: right !important;
    padding-right: 5px !important;
    padding-bottom: 4px;
    color: #575757;
}

.related_search_topics_left_panel {
    padding: 10px 0px 0px 20px;
    font-size: 16px;
    color: #575757;
    text-align: left !important;
    padding-bottom: 4px;
}

.search-wrapper {
    max-width: 1110px;
    margin: 0px auto;
    padding: 0px;
    position: relative;
}

/* Footer */
footer {
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
    padding:1rem 1rem 2rem;
    background-color: #E7E9ED;
}

footer .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    width: 100%;
    max-width: 20rem;
    margin: 2rem 1rem;
    color: #343434;
    font-size: 14px !important;
    padding: 0 !important;
    margin: 16px 0 !important;
}

footer .copyright {
    font-size: 14px !important;
    margin: 5px 0 !important;
    font-weight: bold;
    text-align: center;
}

form.search button[type=submit] {
    color: #FFF;
    background-color: #BBB;
    outline: 0;
    border: none;
    padding: 1rem;
}

form.search button[type=submit]:focus, form.search button[type=submit]:hover {
    background-color:#9B9B9B
}

#search_input {
    outline: 0;
    margin: 0;
    padding: 9px 5px;
    color: #000;
    font-size: 25px;
    border-width: .1rem;
    border-radius: .2rem;
    appearance: auto;
    border-top-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-top-style: inset;
    border-right-style: inset;
    border-bottom-style: inset;
    border-left-style: inset;
    border-top-color: gray;
    border-right-color: gray;
    border-bottom-color: gray;
    border-left-color: gray;
    -webkit-rtl-ordering: logical;
    -webkit-user-select: text;
    cursor: auto;
    width: 270px;
    letter-spacing: normal;
    word-spacing: normal;
    line-height: normal;
    text-transform: none;
    text-indent: 0;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    margin-bottom: 10px;
}

#search_input::placeholder {
    font-weight: 100;
    font-style: italic;
    opacity: 1;
}

.search-btn {
    background-color: transparent;
    width: 48px;
    height: 49px;
    text-align: center;
    cursor: pointer;
}

.search-icon {
    width: 20px;
    height: 20px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: bold;
}

.menu-bx ul {
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.menu-bx ul li {
    margin-left: 24px;
}

/************** Responsive *******************/
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 1139px) {
    .col-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333333333%;
        flex: 0 0 33.33333333333333%;
        max-width: 33.33333333333333%;
    }

    .search-bx figcaption {
        font-size: 16px;
    }

    .search-bx-ne figcaption {
        font-size: 16px;
    }

    header .logo-light {
        width: 75%;
    }

    .header-serach-form {
        margin-left: 0;
    }

    .form-control {
        font-size: 14px;
        padding: 12px;
        height: 40px;
    }

    .header-serach-form .form-control {
        padding-left: 35px;
    }

    .light-mode-button span:nth-child(1) {
        height: 34px;
        width: 60px;
    }

    .light-mode-button span:nth-child(2) {
        width: 26px;
        height: 26px;
        background-size: 14px;
    }

    body[light-mode="light"] .light-mode-button span:nth-child(2) {
        left: 31px;
        background-size: 14px;
    }

    body {
        font-size: 14px;
    }

    .menu-bx ul li {
        margin-left: 20px;
    }

    .light-mode-button {
        height: 34px;
        width: 60px;
    }

    .top-search-w-left-menu .col-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

}

@media (max-width: 1198.98px) {
    .search-wrapper {
        max-width: 900px;
    }
}

@media (max-width: 990.98px) {
    .search-item {
        min-height: 250px;
    }
    .search-wrapper {
        max-width: 690px;
    }
    .sm-w-30{ width: 30%;}
    .sm-w-70{ width: 70%;}
}

@media (max-width: 767px) {
    .col-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .search-bx figcaption {
        padding: 14px 12px;
        line-height: normal;
    }

    .search-bx-ne figcaption {
        padding: 14px 12px;
        line-height: normal;
    }

    .brand-search {
        width: 100%;
    }

    .header-serach-form {
        width: 100%;
        margin-top: 20px;
    }

    .brand-bx {
        width: 100%;
    }

    .logo-light {
        width: 100px !important;
    }

    .header-nav {
        position: relative;
    }

    .light-mode-button {
        position: absolute;
        right: 50px;
        top: -8px;
    }

    .top-search-sec .col-4 {
        margin-bottom: 15px;
    }

    .col-4 {
        padding: 0 7.5px;
    }

    .top-search-sec {
        padding: 15px 7.5px;
    }

    .search-bx figcaption {
        font-size: 14px;
    }

    .search-bx-ne figcaption {
        font-size: 14px;
    }

    #menuToggle {
        display: block;
    }
    .menu-bx ul.flex{display: none;}
    .xs-d-none{display: none;}
    .xs-w-100{ width: 100%;}
    #menu ul li{ padding: 15px;}

    .top-search-sec {
        margin-top: 10px;
    }

    .search-bx img {
        min-height: 190px;
    }

    .search-wrapper {
        max-width: 480px;
    }
    #search_input {
        min-width: 100px;
    }

}

@media (max-width: 450px) {
    .search-bx img {
        min-height: 150px;
    }
    .top-search-w-left-menu .col-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .search-item {
        min-height: 375px;
    }

    .search-bx figcaption {
        font-size: 20px;
    }

    .search-bx-ne figcaption {
        font-size: 20px;
    }

}

@media (max-width: 320px) {
    .search-item {
        min-height: 160px;
    }
}
