/* @import url('https://fonts.googleapis.com/css?family=Roboto:300,400,400i,500,700,900|Open+Sans:300,400,600,700'); */


#jqcheck {
    background: #fff9d7;
    text-align: center;
    color: #333;
    padding: 10px 0px;
    font-size: 13px;
    font-weight: bold;
    position: fixed;
    z-index: 9991;
    width: 100%;
    font-family: "sofia-pro", Sans-serif;
}

* {
    margin: 0px;
    padding: 0px;
}

/* text selection color */
::-moz-selection {
    background: var(--primary-color);
    color: var(--theme-white);
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: var(--theme-white);
    text-shadow: none;
}

/* browser scroller style */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: none;
}

::-webkit-scrollbar-track-piece {
    background-color: #ecedf1;
    -webkit-border-radius: 0px;
    border-left: 1px solid #888;
}

::-webkit-scrollbar-thumb:vertical {
    -webkit-border-radius: 0px;
    background: var(--primary-color);
}


@media screen and (-webkit-min-device-pixel-ratio:0) {
    select {
        -webkit-appearance: none !important;
        line-height: 28px !important;
    }
}

body {
    font-family: "sofia-pro", Sans-serif;
    color: var(--default-color);
    font-size: var(--base-font-size);
    position: relative;
    background: #faf5e9;
}

/* font family */

/* font colors */
.fc-primary {
    color: var(--primary-color);
}

.fc-secondary {
    color: var(--secondary-color);
}

.fc-dark {
    color: var(--theme-dark);
}

.fc-lite {
    color: var(--theme-lite);
}

/* buttons */
.primary-btn,
.secondary-btn {
    font-size: 13px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 8px 15px;
    position: relative;
    display: table;
    border-radius: 3px;
}

.primary-btn:after,
.secondary-btn:after {
    content: "\e957";
    font-family: 'icomoon' !important;
    font-size: 13px;
    color: white;
    padding-left: 10px;
    display: table-cell;
    vertical-align: middle;
}

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

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

.secondary-btn {
    background: var(--secondary-color);
    color: white;
}

.secondary-btn:hover {
    background: var(--secondary-color-dark);
    color: white;
}

.banner-btn {
    text-transform: capitalize;
    display: inline-block;
    transform: translateY(0rem);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    color: #fff !important;
    background-color: transparent;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    border: 1px solid #fff !important;
}


.secpad-100 {
    padding: 100px 0;
}


.sm-btn {
    font-size: 14px;
}

.md-btn {
    font-size: 16px;
}

.lg-btn {
    font-size: 18px;
}

.xl-btn {
    font-size: 20px;
}

/* headings */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p {
    margin: 0;
    padding: 0;
}

h1,
.h1,
h2,
.h2 {
    font-family: "sofia-pro", Sans-serif;
}

h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: "sofia-pro", Sans-serif;
    padding-bottom: 10px;
    color: var(--theme-dark);
}

h2,
.h2 {
    font-size: 6.7vmin;
}

h3,
.h3 {
    font-size: var(--font-size-h3);
    font-weight: 600;
}

h4,
.h4 {
    font-size: var(--font-size-h4);
}

h5,
.h5 {
    font-size: var(--font-size-h5);
}

h6,
.h6 {
    font-size: var(--font-size-h6);
}

p {
    /*font-size: var(--base-font-size);*/
}

p {
    font-weight: 400;
    line-height: 1.4;
    padding: 0 0 20px;
    margin: 0px;
    color: #000000;
}

/*** theme sections padding ***/
.sec-padding-100 {
    padding: 100px 0;
}

.sec-padding-90 {
    padding: 90px 0;
}

.sec-padding-80 {
    padding: 80px 0;
}

.sec-padding-70 {
    padding: 70px 0;
}

.sec-padding-60 {
    padding: 60px 0;
}

.sec-padding-xlarge {
    padding: 50px 0;
}

.sec-padding-large {
    padding: 40px 0;
}

.sec-padding-medium {
    padding: 30px 0;
}

.sec-padding-small {
    padding: 25px 0;
}

.sec-padding-xsmall {
    padding: 10px 0;
}

/*** theme sections margin ***/
.sec-margin-100 {
    margin: 100px 0;
}

.sec-margin-90 {
    margin: 90px 0;
}

.sec-margin-80 {
    margin: 80px 0;
}

.sec-margin-70 {
    margin: 70px 0;
}

.sec-margin-60 {
    margin: 60px 0;
}

.sec-margin-xlarge {
    margin: 50px 0;
}

.sec-margin-large {
    margin: 40px 0;
}

.sec-margin-medium {
    margin: 30px 0;
}

.sec-margin-small {
    margin: 25px 0;
}

.sec-margin-xsmall {
    margin: 10px 0;
}

/*** no padding, no marging ***/
.p-0 {
    padding: 0;
}

.pt-0 {
    padding-top: 0px;
}

.pb-0 {
    padding-bottom: 0px;
}

.pl-0 {
    padding-left: 0px;
}

.pr-0 {
    padding-right: 0px;
}

.m-0 {
    margin: 0;
}

.mt-0 {
    margin-top: 0px;
}

.mb-0 {
    margin-bottom: 0px;
}

.ml-0 {
    margin-left: 0px;
}

.mr-0 {
    margin-right: 0px;
}




.tt-uppercase {
    text-transform: uppercase;
}

.tt-capitalize {
    text-transform: capitalize;
}




p strong {
    color: black;
}

p span {
    color: black;
}

a:hover {
    text-decoration: none;
}

a:focus {
    outline: none;
    text-decoration: none;
}

img {
    border: 0px;
    outline: none;
}

/*img { max-width: 100%;  }*/
ul,
li {
    list-style-type: none;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

h2,
.h2 {
    color: #171717;
    line-height: 1.2;
    font-weight: 700;
    padding: 0 0 15px 0;
    position: relative;
    letter-spacing: -1px;
}

h2 span,
.h2 span {
    color: var(--primary-color);
}

a {
    text-decoration: none;
}

.list-simple {
    list-style: none;
    margin: 0 0 15px 0;
    width: 100%;
    display: inline-block;
}

.list-simple li {
    color: var(--default-color);
    padding: 0 0 10px 16px;
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
    position: relative;
}

.list-simple li:before {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 13px;
    color: var(--secondary-color);
    content: "\e93a";
    font-family: 'icomoon' !important;
}

/*** morefull block link ***/
.moreFull {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-indent: -9999px;
}

/*** transition ***/
.transition {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/*** scale with transition ***/
.scale-with-transition {
    -webkit-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
}

/* header 
------------------------------------*/
header {}

header .logowrp {}

/* header .logowrp img {
    height: 75px;
} */

header .navwrp {
    display: block;
    text-align: right;
}

header .navwrp ul {}

header .navwrp ul li {
    display: inline-block;
    margin: 0 0 0 20px;
}

header .navwrp ul li a {
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

marquee a {
    color: #fbebce;
    font-size: 16px;
    font-weight: 500;
}

marquee a:hover {
    color: #000033 !important;
}

header .navwrp ul li a.btnwrp {
    background: #FF8E2A;
    color: #fff;
    padding: 19px 40px;
    font-weight: 500;
    border-radius: 7px;
}


.btn-1 {
    background: #000033;
    color: #fff !important;
    padding: 12px 14px;
    font-weight: 500;
    border-radius: 7px;
    font-size: 16px;
    cursor: pointer;
}

.main-heading {
    color: #000000;
    font-size: 38px;
    font-weight: 600;
    line-height: 1;
    padding: 0 0 30px;
    text-shadow: 2px 1px 0px #92baa6 !important;
}

.upr-head {
    color: #000;
    font-size: 24px;
    letter-spacing: 6px;
}

.main-pera {
    font-size: 14px;
    line-height: 1.7;
}


.home-bannwrp {
    padding: 20px 0 40px 0;
}

.home-bannwrp .mainwrp {
    background: linear-gradient(#fbebcecf, #fbebcebd), url(../images/bannerbg.webp);
    padding: 40px 50px;
    border-radius: 20px;
}

.home-bannwrp .txtwrp h4 {
    color: #000;
    font-weight: 500;
    font-size: 32px;
}

.home-bannwrp .txtwrp h1 {
    color: #000000;
    font-size: 52px;
    font-weight: 600;
    line-height: 1;
    padding: 0 0 30px;
    text-shadow: 2px 1px 0px #92baa6 !important;
}

.home-bannwrp .txtwrp p {
    font-size: 14px;
}

.home-bannwrp .btnwrp {
    display: block;
    padding: 10px 0 0;
}

.home-bannwrp .btnwrp a img {
    width: 150px;
    margin: 0 0 0 30px;
}

.home-bannwrp .logoswrp {}

.home-bannwrp .logoswrp ul {
    display: block;
    margin: 50px 0 0;
}

.home-bannwrp .logoswrp ul li {
    display: inline-block;
    margin: 0 30px 0 0;
}

.home-bannwrp .logoswrp ul li img {
    height: 90px;
}


.formwrp form {
    border-style: dashed;
    border-width: 1px 1px 1px 1px;
    margin: 0;
    padding: 20px 20px;
    border-radius: 15px;
    background-color: #faf5e9;
    position: relative;
    width: 87%;
    float: right;
}

.formwrp form h4 {
    font-size: 35px;
    font-family: "sofia-pro", sans-serif;
    text-align: center;
    font-weight: 500;
}

.formwrp form .lablewrp {}

.formwrp form .lablewrp input {
    width: 100%;
    padding: 7px 20px;
    margin-bottom: 10px;
    border: none;
    border-bottom: 1px solid #69727d;
    font-size: 14px;
    color: #919191;
}

.formwrp form .lablewrp textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: none;
    border-bottom: 1px solid #69727d;
    font-size: 18px;
    color: #919191;
    height: 110px;
}

.formwrp form .lablewrp select {
    width: 100%;
    padding: 5px 20px;
    margin-bottom: 10px;
    border: none;
    border-bottom: 1px solid #69727d;
    font-size: 14px;
    color: #919191;
}

.formwrp form .submt-btn {
    width: 100%;
    padding: 7px 14px;
    col\: #;
    border: none;
    background: #000033;
    color: #fff;
    font-size: 14px;
    border-radius: 5px;
}

.formwrp img {
    position: absolute;
    left: -50px;
    width: 120px;
}




.clientlogowrp {
    display: block;
    text-align: center;
    padding: 20px 0 110px;
}

.clientlogowrp ul {
    display: block;
    margin: 50px 0 0;
}

.clientlogowrp ul li {
    display: inline-block;
}

.clientlogowrp ul li img {
    height: 30px;
}



.simple-secwrp {}

.simple-secwrp .mainwrp {
    background: #fbebce;
    padding: 70px 70px;
    border-radius: 20px;
}

.simple-secwrp .imgwrp {}

.simple-secwrp .imgwrp img {
    width: 100%;
}

.simple-secwrp .txtwrp {
    padding-bottom: 20px;
}

.simple-secwrp .txtwrp ul {
    display: block;
    margin: 0 0 40px;
}

.simple-secwrp .txtwrp ul li {
    display: block;
    padding: 0 0 6px;
    font-size: 16px;
    color: #000;
}

.simple-secwrp .txtwrp ul li svg {
    margin: 0 10px 0 0;
}



.packgewerp {
    padding: 60px 0 50px;
}

.packgewerp .txtwrp {
    display: block;
    text-align: center;
    padding: 0 0 20px;
}

.packgewerp .pkgebox {
    border-style: dashed;
    border-width: 1px 1px 1px 1px;
    padding: 23px 30px 70px;
    border-radius: 10px;
    position: relative;
    margin-bottom: 35px;
    border: 2px dotted #00000052;
}

.packgewerp .pkgebox span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #000033;
    border-radius: 50%;
    position: absolute;
    right: 40px;
    top: 52px;
}

.packgewerp .pkgebox .pkgename {}

.packgewerp .pkgebox .pkgename h4 {
    font-size: 22px;
    color: #000;
    font-weight: 500;
    line-height: 2;
}

.packgewerp .pkgebox .pkgename h3 {
    font-size: 37px;
    color: #000;
}

.packgewerp .pkgebox .pkgename h5 {
    padding: 5px 10px;
    border: 1px solid #000033;
    border-radius: 30px;
    text-align: center;
    text-decoration: line-through;
    font-size: 19px;
}

.packgewerp .pkgebox .pkgename h6 {}

.packgewerp .pkgebox .detailwrp {
    background: #fbebce;
    padding: 30px 10px 0;
    margin: 0 0 40px;
}

.packgewerp .pkgebox .detailwrp ul {
    height: 300px;
}

.packgewerp .pkgebox .detailwrp ul li {
    color: #000;
    font-weight: 300;
    padding: 0 0 10px 20px;
    font-size: 14px;
    position: relative;
}

.packgewerp .pkgebox .detailwrp ul li:after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background: #000;
    left: 0px;
    border-radius: 50%;
    top: 7px;
}

.packgewerp .pkgebox .btnwrp {
    position: relative;
}

.packgewerp .pkgebox .btnwrp:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background: #ff8e2a;
    bottom: -36px;
    left: 0;
    right: 0;
    margin: auto;
}





.testimonialwrp {
    padding-bottom: 90px;
    margin-top: 45px;
}

.testimonialwrp .txtwrp {
    display: block;
    text-align: center;
    padding: 0 0 30px;
}

.testimonialwrp .mainwrp {
    padding: 45px 25px 20px 25px;
    border-radius: 20px;
    box-shadow: 0px 0px 17px -11px;
    display: block;
    text-align: center;
    height: 320px;
    margin: 10px 0 20px;
}

.testimonialwrp .mainwrp h4 {
    color: #000;
    font-size: 24px;
}

.testimonialwrp .mainwrp p {
    font-size: 14px;
}

.testimonialwrp .mainwrp img {
    width: 260px;
    text-align: center;
    margin: 0 auto;
    display: block;
}



.portfoliowrp {
    margin-top: 50px;
}

.portfoliowrp .mainwrp {
    background: #fbebce;
    padding: 60px 70px 80px;
    border-radius: 20px;
}

.portfoliowrp .txtwrp {
    display: block;
    text-align: center;
}

.portfoliowrp .tabbewrp {
    display: block;
    padding: 0 0 50px;
}

.portfoliowrp .tabbewrp ul {
    margin: 0;
    text-align: center;
    display: block;
}

.portfoliowrp .tabbewrp ul li {
    display: inline-block;
    margin: 0 6px 16px;
    background: #faf5e9;
    padding: 10px 40px;
    border-radius: 7px;
    font-size: 14px;
    color: #000;
    cursor: pointer;
}

.portfoliowrp .tabbewrp ul li.current {
    background: #000033;
    color: #fff;
}

.portfoliowrp .port-box {}

.portfoliowrp .port-box ul {}

.portfoliowrp .port-box ul li {
    display: inline-block;
    margin: 0 10px 0;
}

.portfoliowrp .port-box ul li img {
    width: 100%;
    border-radius: 15px;
}



.ctawrp {
    padding: 60px 0px;
}

.ctawrp .mainwrp {
    background: #081521;
    display: block;
    text-align: center;
    padding: 70px 70px 80px;
    border-radius: 20px;
}

.ctawrp .mainwrp h2 {
    color: #fff;
}

.ctawrp .mainwrp p {
    color: #fff;
    font-size: 18px;
}

.ctawrp .mainwrp .btnwrp {
    display: block;
    padding: 30px 0 0;
}


.boxsection {
    padding: 30px 0;
    margin-bottom: 50px;
}

.boxsection .mainwrp {
    background: #fbebce;
    padding: 60px 30px 70px;
    border-radius: 20px;
}

.boxsection .mainwrp .txtwrp {
    display: block;
    text-align: center;
    padding: 0 0 30px;
}

.boxsection .mainwrp .boxwrp {
    border-radius: 20px;
    box-shadow: 0px 0px 17px -11px;
    background: #faf5e9;
    padding: 40px 20px;
    text-align: center;
    display: block;
    margin: 0 0 70px;
    height: 320px;
}

.boxsection .mainwrp .boxwrp img {
    height: 60px;
    padding: 0 0 20px;
}

.boxsection .mainwrp .boxwrp h4 {
    font-size: 18px;
}

.boxsection .mainwrp .boxwrp p {
    font-size: 16px;
    height: 110px;
}







.ctawrp .mainwrp ul.tblewrp {
    display: block;
    text-align: center;
}

.ctawrp .mainwrp .tblewrp li {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    margin: 0px 0px 10px 30px;
    position: relative;
    width: 26%;
    text-align: left;
}

.ctawrp .mainwrp .tblewrp li:after {
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    background: #000033;
    border-radius: 50%;
    position: absolute;
    right: 290px;
    top: 4px;
}


.faqsss {}

.faqsss .mainwrp {
    background: #fbebce;
    padding: 90px 70px;
    border-radius: 20px;
}

.hk_hide {
    display: none;
}

.accordion,
.accordion * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.accordion {
    overflow: hidden;
    background: none;
    margin-top: 0px;
}

.quest-title {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    padding: 25px 45px 25px 15px;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
    min-height: 60px;
    line-height: 30px;
    display: inline-block;
    transition: all linear 0.15s;
    text-decoration: underline;
    border-bottom: 1px solid #d9b5b557;
    font-family: "Poppins", sans-serif;
    background-color: #faf5e9;
    border-radius: 10px;
}

.quest-title:before {
    position: absolute;
    content: "\2b";
    width: 20px;
    height: 20px;
    right: 15px;
    top: 22px;
    font-family: 'Fontawesome' !important;
    color: #000000;
    /*font-size: 24px;*/
    font-weight: 700;
}

.quest-title.active,
.quest-title:hover {
    content: "\e91c";
    color: #000;
    text-decoration: underline;
}

.quest-title:after {
    width: 60px;
    height: 1px;
    left: -60px;
    bottom: -1px;
    background: #dbdbdb;
    position: absolute;
    content: "";
}

.quest-title.active:before {
    content: "\f068";
}

.quest-title:hover:before {
    /*content: "\f056";*/
}

.quest-content {
    padding: 15px 20px 0;
    display: none;
    margin-bottom: 0px;
    float: left;
    width: 100%;
}

.quest-content .bodrbtm h4 {
    font-size: 18px;
}

.quest-content p {
    line-height: 20px;
    font-size: 14px;
    font-weight: 500;
    margin: 0px;
    color: #363636;
}

.quest-title {}




.orderformwrp {
    padding: 50px 0;
}

.orderformwrp .mainwrp {
    background: #fbebce;
    padding: 70px 70px;
    border-radius: 20px;
}

.form-box-main form label.field-txt {
    font-weight: 500;
    font-size: 18px;
    color: #5B6B7F;
    margin: 0 0 5px;
    width: 100%;
    display: block;
    padding: 10px 0px 0;
}

.form-box-main form label.field-txt span {
    color: #e60303;
}

.form-box-main form input[type="text"],
.form-box-main form input[type="email"],
.form-box-main form input[type="number"],
.form-box-main form input[type="tel"],
.form-box-main form textarea {
    width: 100%;
    margin: 0 0 20px 0;
    border: none;
    background: #faf5e9;
    padding: 18px 15px;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    height: 55px;
    border-radius: 8px;
}

.form-box-main form select {
    width: 100%;
    margin: 0 0 20px 0;
    border: 1px solid #B2B9C1;
    background: #faf5e9;
    padding: 12px 15px;
    color: #5B6B7F;
    font-size: 18px;
    font-weight: 400;
    border-radius: 8px;
    -webkit-appearance: auto;
}

.form-box-main form select:focus {
    border-radius: 8px 8px 0px 0px;
}

.form-box-main form select[name="ddlMonth"],
.form-box-main form select[name="ddlDay"],
.form-box-main form select[name="ddlYear"] {
    float: left;
    width: 32.5%;
    margin: 0 1% 0 0;
}

.form-box-main form select[name="ddlYear"] {
    margin: 0;
}

.form-box-main form textarea {
    width: 100%;
    margin: 0;
    padding: 8px 12px;
    height: 100px;
}

.check-list {
    /* float:left; */
    margin: 0 15px 0 0;
}

.form-box-main form input[type=checkbox]:not(old),
.form-box-main form input[type=radio]:not(old) {
    width: 20px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
}

.form-box-main form input[type=checkbox]:not(old)+label,
input[type=radio]:not(old)+label {
    display: inline-block;
    /* margin-left:-28px; */
    /* padding-left: 28px; */
    line-height: 24px;
    font-weight: 500;
    font-size: 14px;
    color: #000;
    font-size: 16px;
}

.form-box-main form input[type=checkbox]:not(old):checked+label {
    background-position: 0 -24px;
}

/*.form-box-main form input[type=checkbox]:not(old):checked + label a{color:#000 }*/
.form-box-main form .check-list label {
    color: #000
}

.form-box-main form .check-list label a {
    color: #c36;
    text-decoration: underline;
}

.form-box-main form input[type=radio]:not(old):checked+label {
    background-position: 0 -48px;
}

.form-box-main form input[type="submit"] {
    display: inline-block;
    transform: translateY(0rem);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    color: #fff;
    background: #000033;
    margin-top: 20px;
    border: none;
    padding: 20px 60px;
    font-size: 18px;
    border-radius: 8px;
    border: 3px solid;
    cursor: pointer;
    width: 100%;
}

.form-box-main form input[type="submit"]:after {
    content: "\e93a";
    font-family: 'icomoon' !important;
    font-size: 13px;
    color: white;
    padding-left: 10px;
}

.form-box-main form input[type="submit"]:hover {
    display: inline-block;
    color: #fff;
}

.form-box-main form input::-webkit-input-placeholder {
    color: gray;
    opacity: 1 !important;
}

.form-box-main form input:-moz-placeholder {
    color: gray;
}

.form-box-main form input::-moz-placeholder {
    color: gray;
}

.form-box-main form input:-ms-input-placeholder {
    color: gray;
}

.form-box-main form textarea::-webkit-input-placeholder {
    color: gray;
    opacity: 1 !important;
}

.form-box-main form textarea:-moz-placeholder {
    color: gray;
}

.form-box-main form textarea::-moz-placeholder {
    color: gray;
}

.form-box-main form textarea:-ms-input-placeholder {
    color: gray;
}

.form-box-main form input:focus,
.form-box-main form textarea:focus,
.form-box-main form select:focus,
.form-box-main form option:focus,
.selected-flag {
    outline: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.form-box-main form .intl-tel-input {
    width: 100%;
}

.form-box-main form .intl-tel-input .country-list {
    width: 380px;
}

.form-box-main form .intl-tel-input .country-list .country {
    font-size: 13px;
}

.form-box-main form label.error,
label.error {
    color: red;
    font-style: italic;
    margin-bottom: 0px;
    display: none !important;
}

div.error {
    display: none;
}

input.checkbox {
    border: none
}

input.error {
    border: 1px solid red !important;
}

form.cmxform .gray * {
    color: gray;
}




.tabs {
    display: none;
}

.tabs.current {
    display: block;
}






.frm-content {
    background: #ECF5FC;
    padding: 120px 110px;
    border-radius: 20px;
}






footer {}

footer .btn-1 {
    padding: 13px 20px;
}

footer .mainwrp {
    background: #fbebce;
    padding: 40px 60px;
    border-radius: 20px;
}

footer .mainwrp .bdr-btmmm {
    border-bottom: 1px solid #fff;
}

footer .mainwrp .dtlwrp ul {}

footer .mainwrp .dtlwrp ul li {
    margin-bottom: 10px;
}

footer .mainwrp .dtlwrp ul li h4 {
    font-size: 26px;
    color: #000;
}

footer .mainwrp .dtlwrp ul li i {
    font-size: 24px;
    color: #000;
    margin: 0 10px 0 0;
    width: 20px;
}

footer .mainwrp .dtlwrp ul li a {
    color: #000;
    font-size: 14px;
}

footer .imgwrp {}

footer .imgwrp img {
    width: 80%;
    margin-top: 10px;
}

footer .btnwrp {
    margin-top: 20px;
}

footer .txtwrp p {
    font-size: 14px;
    color: #000;
    margin-top: 40px;
}

footer .imgwrp img.img-2 {
    width: 100%;
    margin: 10px 0;
}

footer ul.trmswrp {
    display: block;
    margin: 20px 0 0 0;
}

footer ul.trmswrp li {
    display: inline-block;
    margin-right: 10px;
    border-right: 1px solid #000;
}

footer ul.trmswrp li a {
    font-size: 14px;
    color: #000;
    margin-right: 10px;
}

footer ul.trmswrp li.nobdr {
    border: none
}




.emmm {
    width: 100%;
    margin: 0 0 20px 0;
    border: none;
    background: #faf5e9;
    padding: 18px 15px;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    height: 55px;
    border-radius: 8px;
}

section {
    overflow-x: hidden;
}

/* other csss  */

.modal1 {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    outline: 0;
    text-align: center;
    padding: 0 !important;
    /* margin: 0 auto !important; */
}

.modal1 {
    background: #0000008c;
}

.modal1 .modal-dialog1 {
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
}

.modal1 .modal-dialog1 {
    width: 100%;
    max-width: 1000px;
    position: absolute;
    left: 120px;
    /* right: 0; */
    margin: 3% auto;
    top: 1%;
    bottom: 0;
}

.modal-content1 {
    position: absolute;
    /* right: 150px; */
    left: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    border-radius: 30px !important;
}

.modal-body1 {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.copuncotnent textarea {
    height: 130px;
    border-radius: 5px;
    padding: 0 15px;
    font-family: system-ui;
    font-weight: 400;
    border: 1px solid #c5c5c5;
    margin: 0 0 15px;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.left_new_pop {
    background: white !important;
    height: 517px;
    position: relative;
    top: 0px;
    width: 70%;
    border-radius: 10px;
    left: 156px;
    padding: 20px 20px;
}

.modal-body1 {
    top: 130px;
}

.copuncotnent.mt-3 h2 {
    /* padding: 36px 0px 20px 6px; */
    font-size: 32px;
    font-weight: 500;
}

.copuncotnent.mt-3 h2 span {
    font-size: 30px;
    font-weight: 600;
    width: 100%;
    display: block;
    padding: 0 !important;
}

.form-control {
    align-items: center;
    width: 100%;
    display: flex;
    justify-content: center;
    /* margin: 8px auto !important; */
    border-radius: 5px;
}

input.popup_new_btn {
    width: 270px;
    height: 40px !important;
    margin: 20px 0 0 0;
    border: none;
    background: #FF8E2A;
    color: black;
    border-radius: 20px;
    float: left;
    font-size: 18px;
}

button.btn-close1 {
    position: fixed;
    top: 0;
    background: unset;
    width: 40px;
    height: 40px;
    z-index: 9999999999 !important;
    left: unset;
    right: 0;
    border: none;
    border-radius: 50%;
}

button.btn-close1:before {
    transform: rotate(129deg);
    left: 18px;
    top: 7px;
}

button.btn-close1:after,
button.btn-close1:before {
    content: '';
    display: block;
    position: absolute;
    background: #000;
    width: 5px;
    height: 20px;
    top: 9px;
    border-radius: 5px;
}

button.btn-close1:after {
    transform: rotate(45deg);
    left: 19px;
}

.inner_pop_img img {
    border-radius: 50px 0px 50px 50px;
    width: 126%;
    height: auto;
    position: relative;
    top: 10px;
    left: -52px;
}

.modal-body.formwrp form {
    width: 100%;
}

.modal.show .modal-dialog,
.modal-content {
    background: none;
    border: none;
}

.modal-header {
    border-bottom: none !important;
    position: absolute;
    top: 30px;
    right: 20px;
    z-index: 099999;
    /* border: 2px solid; */
}

.form-check-input {
    width: auto !important;
    position: relative;
    margin-left: 0;
}
.fldset.margin-field {
    display: flex;
    align-items: baseline;
    margin-top: 10px;
}
.fldset.margin-field input {
    width: 3rem;
    position: relative;
    top: 3px;
}
.fldset.margin-field label {
    font-size: 10px;
    text-align: justify;
    padding-left: 10px;
}kljgalgdkjd