html {
    font-size: 15px;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: rgba(255, 255, 255, 0.973);
}

.main-background {
    background: #fff url("/images/banner-img.png") no-repeat center center fixed;
    /* background: #000 url("1.png") no-repeat center center fixed; */
    background-size: cover;
    /* padding-top: 39px; */
    height: 180vh;
}

section {
   margin: auto;
   width: 70%;
}

.flex-container {
    display: flex;
}

.flex-child {
    flex: 1;
}

.flex-child:first-child {
    margin-right: 20px;
}
.flex-child:last-child {
    text-align: right;
}

.header-link, .header-span {
    color: #fff;
}

.header-link {
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.075em;
}

.header-link:hover {
    color: #eee;
}


.content-wrapper {
    margin: auto;
    width: 80%;
    margin-top: 60px;
    text-align: center;
}

.content-wrapper h1 {
    font-size: 50px;
    color: #fff;
    line-height: 70px;
}

.search-input-section {
    margin: auto;
    width: 70%;
    margin-bottom: 85px;
}


/* result */

.result-section {
    margin: auto;
    width: 90%;
    margin-top: 25px;
}

.result-flex-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Search input style */
:root {
    /* generic */
    --gutterSm: 0.4rem;
    --gutterMd: 0.8rem;
    --gutterLg: 1.6rem;
    --gutterXl: 2.4rem;
    --gutterXx: 7.2rem;
    --colorPrimary400: #7e57c2;
    --colorPrimary600: #333;
    --colorPrimary800: #4527a0;
    --fontFamily: "Dosis", sans-serif;
    --fontSizeSm: 1.2rem;
    --fontSizeMd: 1.6rem;
    --fontSizeLg: 2.1rem;
    --fontSizeXl: 2.8rem;
    --fontSizeXx: 3.6rem;
    --lineHeightSm: 1.1;
    --lineHeightMd: 70px;
    --transitionDuration: 300ms;
    --transitionTF: cubic-bezier(0.645, 0.045, 0.355, 1);

    /* floated labels */
    --inputPaddingV: var(--gutterSm);
    --inputPaddingH: var(--gutterMd);
    --inputFontSize: var(--fontSizeLg);
    --inputLineHeight: var(--lineHeightMd);
    --labelScaleFactor: 0.8;
    --labelDefaultPosY: 50%;
    --labelTransformedPosY: calc(
    (var(--labelDefaultPosY)) -
    (var(--inputPaddingV) * var(--labelScaleFactor)) -
    (var(--inputFontSize) * var(--inputLineHeight))
    );
    --inputTransitionDuration: var(--transitionDuration);
    --inputTransitionTF: var(--transitionTF);
}

*, *::before, *::after {
    box-sizing: border-box;
}


.Wrapper {
    flex: 0 0 80%;
    /* max-width: 70%; */
}

.Title {
    margin: 0 0 var(--gutterXx) 0;
    padding: 0;
    color: #fff;
    font-size: var(--fontSizeXx);
    line-height: var(--lineHeightMd);
    text-align: center;
    text-shadow: -0.1rem 0.1rem 0.2rem var(--colorPrimary800);
}

.Input {
    position: relative;
}

.Input-text {
    display: block;
    margin: 0;
    padding: var(--inputPaddingV) var(--inputPaddingH);
    color: inherit;
    width: 100%;
    font-family: inherit;
    font-size: var(--inputFontSize);
    font-weight: inherit;
    line-height: var(--inputLineHeight);
    border: none;
    border-radius: 0.4rem;
    transition: box-shadow var(--transitionDuration);
}

.Input-text::placeholder {
    color: #B0BEC5;
}

.Input-text:focus {
    outline: none;
    box-shadow: 0.2rem 0.8rem 1.6rem var(--colorPrimary600);
}

/* RADIO BUTTON STYLE */

.option-wrapper{
    display: inline-flex;
    /* background: #fff; */
    height: 50px;
    width: 300px;
    align-items: center;
    justify-content: space-evenly;
    /* border-radius: 5px; */
    padding: 10px 0px;
    /* box-shadow: 5px 5px 30px rgb(0 0 0 / 20%); */
}
.option-wrapper .option{
    /* background: #fff; */
    height: 100%;
    /* width: 100%; */
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 0 0px;
    /* border-radius: 2px; */
    cursor: pointer;
    /* padding: 0 10px; */
    /* border: 2px solid lightgrey; */
    transition: all 0.3s ease;
}
.option-wrapper .option .dot{
    height: 20px;
    width: 20px;
    background: #d9d9d9;
    border-radius: 50%;
    position: relative;
}
.option-wrapper .option .dot::before{
    position: absolute;
    content: "";
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    background: #0069d9;
    border-radius: 50%;
    opacity: 0;
    transform: scale(1.5);
    transition: all 0.3s ease;
}
input[type="radio"]{
    display: none;
}
#option-1:checked:checked ~ .option-1,
#option-2:checked:checked ~ .option-2,
#option-3:checked:checked ~ .option-3 {
    border-color: #0069d9;
    /* background: #0069d9; */
}
#option-1:checked:checked ~ .option-1 .dot,
#option-2:checked:checked ~ .option-2 .dot,
#option-3:checked:checked ~ .option-3 .dot{
    background: #fff;
}
#option-1:checked:checked ~ .option-1 .dot::before,
#option-2:checked:checked ~ .option-2 .dot::before,
#option-3:checked:checked ~ .option-3 .dot::before{
    opacity: 1;
    transform: scale(1);
}
.option-wrapper .option span{
    font-size: 15px;
    padding-inline: 5px;
    color: #fff;
}
#option-1:checked:checked ~ .option-1 span,
#option-2:checked:checked ~ .option-2 span,
#option-3:checked:checked ~ .option-3 span{
    color: #fff;
}


/* Registration page */

/* body {
	color: #fff;
	background: #63738a;
	font-family: 'Roboto', sans-serif;
} */

.registration-wrapper {
    background-color: #adb5bd;
    width: 100%;
    height: 100vh;
}

.form-control {
	height: 40px;
	box-shadow: none;
	color: #969fa4;
}
.form-control:focus {
	border-color: #5cb85c;
}
.form-control, .btn {
	border-radius: 3px;
}
.signup-form {
	width: 450px;
	margin: 0 auto;
	padding: 30px 0;
  	font-size: 15px;
}
.signup-form h2 {
	color: #636363;
	margin: 0 0 15px;
	position: relative;
	text-align: center;
}
.signup-form h2:before, .signup-form h2:after {
	content: "";
	height: 2px;
	width: 30%;
	background: #d4d4d4;
	position: absolute;
	top: 50%;
	z-index: 2;
}
.signup-form h2:before {
	left: 0;
}
.signup-form h2:after {
	right: 0;
}
.signup-form .hint-text {
	color: #999;
	margin-bottom: 30px;
	text-align: center;
}
.signup-form form {
	color: #999;
	border-radius: 3px;
	margin-bottom: 15px;
	background: #f2f3f7;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
	padding: 30px;
}
.signup-form .form-group {
	margin-bottom: 20px;
}
.signup-form input[type="checkbox"] {
	margin-top: 3px;
}
.signup-form .btn {
	font-size: 16px;
	font-weight: bold;
	min-width: 140px;
	outline: none !important;
}
.signup-form .row div:first-child {
	padding-right: 10px;
}
.signup-form .row div:last-child {
	padding-left: 10px;
}
.signup-form a {
	color: #fff;
	text-decoration: underline;
}
.signup-form a:hover {
	text-decoration: none;
}
.signup-form form a {
	color: #5cb85c;
	text-decoration: none;
}
.signup-form form a:hover {
	text-decoration: underline;
}

/* ads styling */
.horizontal_ads {
    width: 80%;
    height: 100px;
    object-fit: cover;
}

.sinput{
    width: 60% !important;
}
#app > div > div.main-background > section.search-input-section.mb-5.search-input-section-none-mobile > div:nth-child(1) > div > div.main-search-input-item.sinput > input[type=text]::placeholder{
    font-weight: bolder;
    font-size: 20px;
    padding-left: 20px;
}
.linput{
    width: 20% !important;
}

.catsearch{
    width: 20% !important;
}


/* responsiveness | mobile view */
@media only screen and (max-width: 375px) {

    section {
        width: 90%;
    }

    .main-background {
        height: 150vh;
    }

    .flex-container {
        display: grid;
    }

    .flex-child:first-child {
        margin-right: 0 !important;
        text-align: center;
    }

    .logo-attribute {
        width: 100%;
    }

    .header-link {
        font-size: 11px;
    }

    .flex-child:last-child {
        text-align: center;
    }

    .content-wrapper {
        width: 100% !important;
        margin-top: 50px;
        text-align: center;
    }

    .content-wrapper h1 {
        font-size: 29px;
        line-height: 35px;
    }

    .Title {
        margin-bottom: 25px !important;
    }

    /* search engine */

    .option-wrapper {
        width: 100%;
    }

    .option-wrapper .option span {
        font-size: 12px;
    }

    .search-input-section {
        width: 90% !important;
    }

    .Input-text {
        padding: 20px 10px;
        width: 100%;
        border: none;
        font-size: 14px;
        line-height: 10px;
    }

    /* footer */
    .footer-center-style p {
        font-size: 10px;
    }


    /* search result ADS */

    .ads_vertical_style img {
        display: none;
    }

    /* More Info modal */
    /* services modal */
    .table-striped, .table-bordered {
        font-size: 12px !important;
    }

    .nccs_icon {
        right: 15px;
        top: 0;
    }

    /* ads styling */
    .horizontal_ads {
        width: 100%;
    }


    /* SINGLE PAGE CSS */
    .single-profile_photo {
        width: 50% !important;
    }

}


/* SINGLE PAGE CSS */

@media only screen and (max-width: 415px) {

    .footer_alignment {
        padding: 25px 10px 0px 10px !important;
        text-align: center;
    }

    .about_text {
        width: 100% !important;
    }

    .contactNumber {
        padding-right: 30px;
    }

}

.single-profile_photo {
    width: 25%;
}

.single-bg {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    /* width: 50% !important; */
}

.footer_icon {
    width: 20px;
}

.footer_alignment {
    padding: 50px 10px 30px 10px;
}

.footer_bw_logo {
    width: 130px;
}

.footer_left_link {
    text-decoration: none;
    font-size: 12px;
}

.about_text {
    font-size: 14px;
    width: 85%;
    line-height: 19px;
    font-weight: 200;
}

.footer_left_link:hover {
    background-color: #ddd;
    color: #212529 !important;
    padding-block: 2px;
    padding-inline: 5px;
}

.footer_alignment ul li {
    font-size: 14px;
    font-weight: 200;
}

.fl-wrap {
    float: left;
    width: 100%;
    position: relative;
    border-radius: 10px;
}

.main-search-input-item {
    float: left;
    width: 33.3%;
    box-sizing: border-box;
    border-right: 1px solid #eee;
    height: 50px;
    padding: 0 5px;
    position: relative;
}

.main-search-input-item input {
    float: left;
    border: none;
    width: 100%;
    height: 50px;
    padding-left: 40px;
}

.main-search-input-item select {
    float: left;
    border: none;
    width: 100%;
    height: 50px;
    padding-left: 40px;
}

.main-search-input-item .nice-select {
    color: #666;
    font-size: 12px;
    font-weight: 100;
    float: left;
    width: 100%;
    border: none;
    height: 50px;
    z-index: 100;
    background: #fff;
    line-height: 50px;
}

.main-search-input-item-mobile {
    float: left;
    width: 100%;
    box-sizing: border-box;
    /* border-right: 1px solid #eee; */
    height: 50px;
    /* padding: 0 5px; */
    position: relative;
}

.main-search-input-item-mobile input {
    float: left;
    border: none;
    width: 100%;
    height: 50px;
    padding-left: 50px;
}

.main-search-input-item-mobile select {
    float: left;
    border: none;
    width: 100%;
    height: 50px;
    padding-left: 50px;
}

.main-search-input-item-mobile .nice-select {
    color: #666;
    font-size: 12px;
    font-weight: 100;
    float: left;
    width: 100%;
    border: none;
    height: 50px;
    z-index: 100;
    background: #fff;
    line-height: 50px;
}

.nice-select {
    -webkit-tap-highlight-color: transparent;
    border-radius: 4px;
    border: 1px solid #e5e7f2;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    height: 48px;
    line-height: 48px;
    background: #f9f9f9;
    color: #7d93b2;
    outline: 0;
    padding-left: 42px;
    padding-right: 30px;
    position: relative;
    text-align: left!important;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: 100%;
}

.main-search-button {
    position: absolute;
    right: 15px;
    width: 150px;
    color: #fff;
    top: 20px;
    bottom: 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.main-search-button-mobile {
    position: absolute;
    /* right: 15px; */
    width: 100%;
    color: #fff;
    /* top: 5px;
    bottom: 5px; */
    border-radius: 0px 0px 10px 10px;
    border: none;
    cursor: pointer;
    height: 50px;
}

.main-search-input-item label {
    position: absolute;
    left: 20px;
    top: 17px;
    z-index: 10;
    font-size: 17px;
    margin-top: -5px;
    color: #10CAF0;
}

.main-search-input-item-mobile label {
    position: absolute;
    left: 20px;
    top: 17px;
    z-index: 10;
    font-size: 17px;
    margin-top: -5px;
    color: #10CAF0;
}

.main-search-input {
    padding: 20px 180px 70px 20px;
    border-radius: 10px;
}

.main-search-input-mobile {
    padding: 20px 20px 20px 20px;
    border-radius: 10px 10px 0px 0px;
    height: 190px;
}

.main-search-input-mobile-type{
    padding: 20px 20px 20px 20px;
    border-radius: 0px;
}

#app > div > div.main-background > section:nth-child(5) > div > div {
    background-color: #d9d8ce5c !important;
}
.hero-categories i{
    color: #10CAF0;
    font-size: 50px;

}

.hero-categories span{
    color: #fff;
}

.no-list-style{
    list-style: none;
}

.hero-categories {
	margin-top:50px;
	z-index:1;
    text-align: center;
}
.hero-categories li{
	display:inline-block;
	padding:0 30px;
}
.hero-categories li a {
	display:block;
	color:rgba(255,255,255,0.71);
    text-decoration: none;
}
.hero-categories li a i {
	display:block;
	font-size:34px;
	margin-bottom:10px;
}
.hero-categories li a:hover i , .hero-categories li a:hover {
	color:#fff;
}

.hero-categories li a:hover i , .hero-categories li a:hover {
	color:#fff;
}
.hero-categories_title {
	color:rgba(255,255,255,0.9);
    /* color: #0c1723; */
	margin:20px 0 30px;
	position:relative;
	display:block;
	font-weight:500;
	display:inline-table;

}


.small-container {
    max-width: 1024px;
}
.container {
    max-width: 1224px;
    width: 92%;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.hidden{
    display: none;
}

.search-input-section-mobile{
    display: none;
}

.search-input-section-none-mobile{
    display: block;
}

section:nth-child(1) > div > div:nth-child(1) > a > img {
    margin-top: -66px;
    margin-left: -60px;
}

section:nth-child(5) > div > div > ul > li {
    margin: 10px !important;
}

.sinput{
    width: 60% !important;
}

#app > div > div.main-background > section.search-input-section.mb-5.search-input-section-none-mobile > div:nth-child(1) > div > div.main-search-input-item.sinput > input[type=text]::placeholder{
    font-weight: bolder;
    font-size: 20px;
    padding-left: 20px;
}

.linput{
    width: 20% !important;
}

.catsearch{
    width: 20% !important;
}

#app > div > div > div > div.bg-white.rounded-md > form > div.col-sm-3 > label {
    font-weight: bold;
    font-size: 20px;
}
#app > div > div > div > div.bg-white.rounded-md > form > div:nth-child(9) > div > div.col-sm-3 > label {
    font-weight: bold;
    font-size: 20px;
}

#app > div > div > div > div.bg-white.rounded-md > form > div > div.col-sm-3 > label{
    text-transform: uppercase;
}

#app > div > div > div > div.bg-white.rounded-md > form > div:nth-child(9) > div > div > div.col-sm-3 > label {
    text-transform: uppercase;
}

#app > div > div > div > div.bg-white.rounded-md > form > div > div.col-sm-3 {
    text-align: left;
    padding-left: 4%;
}

#app > div > div > div > div.bg-white.rounded-md > form > div:nth-child(9) > div > div > div.col-sm-3 {
    text-align: left;
    padding-left: 4%;
}

#app > div > div > div > div.bg-white.rounded-md > form > div:nth-child(9) > div > div.col-sm-3 {
    text-align: left;
    padding-left: 3%;
}

#app > div > div > div > div.bg-white.rounded-md > form > div.col-sm-3 {
    text-align: left;
    padding-left: 3%;
}

#div-image {
    background-image:url('/images/banner-img.png');
    background-position: unset;
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 73vh;

}

#bird-image{
    width: 80px !important;
}

@media screen and (max-width: 1240px) {

    .country{
        font-size: 30px !important;
    }
    .country2{
        font-size: 30px !important;
    }

    .in::before,.in::after {
        width: 10rem;
    }
}
@media screen and (max-width: 1280px) {
    .main-background {
        height: 150vh !important;
    }
}

@media screen and (max-width: 1240px) {
    .in::before,.in::after {
        width: 30% !important;
    }

    .main-background {
        height: 200vh !important;
    }
}

@media only screen and (max-width: 1024px) {
    #div-image {
        background-image:url('/images/banner-img.png');
        background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            min-height: 73vh;

    }
}

@media only screen and (max-width: 800px) {
    #div-image {
        background-image:url('/images/banner-mobile-img.png');
        background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            min-height: 73vh;

    }
}

@media screen and (max-width: 770px) {
    #app > div > div:nth-child(3) > div > div:nth-child(2) > div {
        border-radius: 20px !important;
    }

    #bird-image{
        width: 50px !important;
    }
}


@media screen and (max-width: 687px) {
    .in::before,.in::after {
        width: 10% !important;
    }
}


@media only screen and (max-width: 640px) {
    .main-background {
        height: 230vh !important;
    }
    .country{
        font-size: 25px !important;
    }

    .country2{
        font-size: 25px;
    }

    .search-input-section-mobile{
        display: block;
    }

    .search-input-section-none-mobile{
        display: none;
    }
    
    #div-image > div > div.w-full.mt-\[20vh\] > div.bg-white.border.border-gray-500.shadow-md.lg\:rounded-full.rounded-\[20px\].xl\:p-4.p-4.mx-\[10\%\] > form > input::placeholder{
        font-size: 15px;
    }
}

@media only screen and (max-width: 430px) {
    #div-image {
        background-image:url('/images/banner-mobile-img.png');
        background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            min-height: 73vh;

    }

    #bird-image{
        width: 40px !important;
        margin-bottom: 0px;
    }
}

@media only screen and (max-width: 375px) {
    section:nth-child(1) > div > div:nth-child(1) > a > img {
        margin-top: -66px;
        margin-left: unset !important;
    }
    .main-background {
        height: 230vh !important;
    }
}


@media only screen and (min-width: 414px) {

    .content-wrapper h1 {
        font-size: 20px;
        color: #fff;
        line-height: 30px !important;
    }
    section:nth-child(2) {
        width: 90% !important;
    }
    ol, ul{
        padding-left: unset !important;
    }

    #searchResult > div > div > div{
        padding-right: 10px !important;
    }
    #searchResult > div > div > div:nth-child(3) > div.col-md-6.p-0 > div {
        padding-left: 10px !important;
    }
    .country{
        font-size: 20px;
    }
    .country2{
        font-size: 20px;
    }
}

@media screen and (min-width: 390px) {
    .content-wrapper h1 {
        font-size: 20px;
        color: #fff;
        line-height: 30px !important;
    }
    section:nth-child(2) {
        width: 90% !important;
    }
    ol, ul{
        padding-left: unset !important;
    }
    .hero-categories li{
        padding:0px !important;
    }
    #searchResult > div > div > div{
        padding-right: 10px !important;
    }
    #searchResult > div > div > div:nth-child(3) > div.col-md-6.p-0 > div {
        padding-left: 10px !important;
    }
    #app > div > div.main-background > section:nth-child(1){
       width: 85% !important;
    }
}

@media screen and (min-width: 360px) {

    .in::before,.in::after {
        width: 10rem;
    }
    .content-wrapper h1 {
        font-size: 20px;
        color: #fff;
        line-height: 30px !important;
    }
    section:nth-child(2) {
        width: 90% !important;
    }

    ol, ul{
        padding-left: unset !important;
    }
    .hero-categories li{
        padding:0px !important;
    }
    #searchResult > div > div > div{
        padding-right: 10px !important;
    }
    #searchResult > div > div > div:nth-child(3) > div.col-md-6.p-0 > div {
        padding-left: 10px !important;
    }
}






