
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Catamaran:wght@400;500;600;700&display=swap");

:root {
    --common-font: 'Catamaran', sans-serif;
    --heading-font: 'Lato', sans-serif;
    --transition: .5s all ease;
    --all-size: 16px;
    --white-color: #ffffff;
    --grey-color: #555555;
    --black-color: #232323;
    --green-color: #F9A01B;
}

/*----- Default CSS -----*/
body {
    font-family: var(--common-font);
    color: var(--grey-color);
    background-color: var(--white-color);
    font-size: var(--all-size);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: var(--black-color);
    font-weight: 700;
}

p {
    line-height: 1.8;
}

a {
    -webkit-transition: var(--transition);
    transition: var(--transition);
    text-decoration: none;
}

img {
    max-width: 100%;
}

.d-table {
    width: 100%;
    height: 100%;
}

.d-table-cell {
    vertical-align: middle;
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}
.pt-170 {
    padding-top: 170px;
}

.ptb-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}


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

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

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

button:focus {
    outline: 0;
}

.btn.focus,
.btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

/*----- End Default CSS -----*/
/*----- Navbar CSS -----*/
.main-nav {
    padding-top: 0;
    padding-bottom: 0;
    background: var(--white-color);
    opacity: .95;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-box-shadow: 0px 0px 30px 0px #dddddd80;
    box-shadow: 0px 0px 30px 0px #dddddd80;
}

.main-nav .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.main-nav nav {
    padding: 0;
}

.main-nav nav .navbar-brand {
    background-color: #fff;
    display: inline-block;
    padding: 0px 30px;
}

.main-nav nav .navbar-nav {
    margin-left: auto;
    margin-right: auto;
}

.main-nav nav .navbar-nav .nav-item:hover a {
    color: var(--green-color);
}

.main-nav nav .navbar-nav .nav-item a {
    color: var(--black-colo);
    font-weight: bold;
    text-transform: capitalize;
    margin-left: 10px;
    margin-right: 10px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.main-nav nav .navbar-nav .nav-item a::after {
    display: none;
}

.main-nav nav .navbar-nav .nav-item a i {
    display: inline-block;
    font-size: 20px;
    position: absolute;
    top: 16px;
}

.main-nav nav .navbar-nav .nav-item a:hover,
.main-nav nav .navbar-nav .nav-item a:focus,
.main-nav nav .navbar-nav .nav-item a.active {
    color: var(--green-color);
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu {
    padding: 0;
    background: var(--black-color);
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li {
    border-bottom: 1px dashed #00997b4f;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:last-child {
    border-bottom: 0;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
    top: 2px !important;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover a {
    color: var(--green-color);
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a i {
    top: 9px;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:focus,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
    color: var(--green-color);
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
    right: -100%;
    left: auto;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
    color: var(--green-color);
}

.main-nav.menu-shrink {
    -webkit-box-shadow: 0px 0px 20px 0px #dddddd80;
    box-shadow: 0px 0px 20px 0px #dddddd80;
    opacity: 1;
}

.main-nav.menu-shrink .navbar-brand {
    background-color: #fff;
    display: inline-block;
    padding: 5px 45px;
}

.main-nav.menu-shrink .side-nav ul li .modal-btn {
    padding: 30px 30px 31px;
}

.side-nav ul {
    margin: 0;
    padding: 0;
}

.side-nav ul li {
    list-style-type: none;
    display: inline-block;
    vertical-align: middle;
}

.side-nav ul li:nth-child(2) {
    border-left: 1px solid var(--white-color);
    padding-left: 20px;
    margin-left: 15px;
}

.side-nav ul li .call {
    position: relative;
    padding-left: 30px;
    margin-right: 25px;
}

.side-nav ul li .call i {
    position: absolute;
    top: 40px;
    left: 0;
    color: var(--green-color);
    font-size: 20px;
}
.side-nav ul li .call i.bxs-user {
    top: 7px;
}
.side-nav ul li .call span {
    display: block;
    color: var(--green-color);
    margin-bottom: 2px;
}

.side-nav ul li .call a {
    display: block;
    color: var(--black-color);
}

.side-nav ul li .call a:hover {
    color: var(--green-color);
}

.side-nav ul li .nav-srh {
    position: relative;
    display: inline-block;
}

.side-nav ul li .nav-srh .search-area {
    position: absolute;
    right: 8px;
    bottom: -105px;
    z-index: 5;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    max-height: 0;
    overflow: hidden;
    background-color: var(--white-color);
}

.side-nav ul li .nav-srh .search-area .search-icon {
    vertical-align: middle;
    position: absolute;
    right: 30px;
    top: 32px;
    background-color: transparent;
    font-size: 20px;
    color: #515151;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.side-nav ul li .nav-srh .search-area .search-icon:hover {
    color: var(--green-color);
}

.side-nav ul li .nav-srh .search-area .src-input {
    outline: none;
    padding-left: 20px;
    margin: 0;
    width: 300px;
    background-color: #dddddd80;
    border: 1px solid #ddd;
    font-size: var(--all-size);
    height: 45px;
    border-radius: 0;
}

.side-nav ul li .nav-srh .search-area.opened {
    max-height: 100px;
    padding: 20px 25px;
    -webkit-box-shadow: 0px 0px 15px #dddddd80;
    box-shadow: 0px 0px 15px #dddddd80;
}

.side-nav ul li .nav-srh .search-icon {
    font-size: 25px;
    position: relative;
    top: 4px;
    color: var(--white-color);
    border: 0;
    outline: none;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background-color: transparent;
}

.side-nav ul li .nav-srh .search-icon:hover {
    color: var(--green-color);
}

.side-nav ul li .nav-srh .search-toggle .search-icon.icon-close {
    display: none;
}

.side-nav ul li .nav-srh .search-toggle.opened .search-icon.icon-search {
    display: none;
}

.side-nav ul li .nav-srh .search-toggle.opened .search-icon.icon-close {
    display: block;
}

.side-nav ul li .modal-btn {
    padding: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    position: relative;
    top: 0;
    background-color: var(--green-color);
    border-radius: 0;
    padding: 36px 30px 35px;
    border: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.side-nav ul li .modal-btn:hover span:nth-child(2) {
    width: 25px;
}

.side-nav ul li .modal-btn:hover span:nth-child(3) {
    width: 15px;
}

.side-nav ul li .modal-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--black-color);
    margin-bottom: 5px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.side-nav ul li .modal-btn span:last-child {
    margin-bottom: 0;
}

.modal-body {
    padding: 0;
}

.modal-body h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #000;
    border-bottom: 2px solid var(--green-color);
    padding-bottom: 5px;
    display: inline-block;
}

.modal-body p {
    margin-bottom: 20px;
}

.modal-body .contact-area {
    margin-bottom: 20px;
}

.modal-body .contact-area ul {
    margin: 0;
    padding: 0;
    margin-top: -4px;
}

.modal-body .contact-area ul li {
    list-style-type: none;
    display: block;
    position: relative;
    padding-left: 45px;
    margin-bottom: 12px;
}

.modal-body .contact-area ul li:last-child {
    margin-bottom: 0;
}

.modal-body .contact-area ul li i {
    display: inline-block;
    color: var(--green-color);
    font-size: 30px;
    position: absolute;
    top: 0;
    left: 0;
}

.modal-body .contact-area ul li span {
    display: block;
    color: var(--black-color);
}

.modal-body .contact-area ul li a {
    display: inline-block;
    color: var(--green-color);
}

.modal-body .contact-area ul li a:hover {
    color: var(--black-color);
}

.modal-body .image-area .col-lg-4 {
    padding-right: 10px;
    margin-right: 0px;
}

.modal-body .image-area a {
    display: block;
    margin-bottom: 20px;
}

.modal-body .image-area a img {
    width: 100%;
}

.modal-body .modal-item {
    margin-bottom: 30px;
}

.modal-body .social-area ul {
    margin: 0;
    padding: 0;
}

.modal-body .social-area ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 5px;
}

.modal-body .social-area ul li:last-child {
    margin-right: 0;
}

.modal-body .social-area ul li a {
    display: block;
    font-size: 18px;
    width: 35px;
    height: 35px;
    text-align: center;
    border-radius: 50%;
    color: var(--white-color);
    background-color: var(--green-color);
}

.modal-body .social-area ul li a i {
    line-height: 35px;
}

.modal-body .social-area ul li a:hover {
    background-color: var(--black-color);
}

#myModalRight {
    z-index: 99999;
    padding-right: 0 !important;
}

#myModalRight .btn-close:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

#myModalRight .modal-header {
    padding: 0;
    margin-bottom: 20px;
    padding-bottom: 25px;
}

#myModalRight .modal-header img {
    max-width: 100px;
}

#myModalRight .modal-header .close {
    position: relative;
    top: 6px;
    -webkit-transform: var(--transition);
    transform: var(--transition);
}

#myModalRight .modal-header .close:hover {
    color: var(--green-color);
}

#myModalRight .modal-content {
    padding: 25px;
}

.modal.modal-right .modal-dialog {
    max-width: 380px;
    min-height: 100vh;
}

.modal.modal-right.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal.modal-right .modal-content {
    height: 100vh;
    overflow-y: auto;
    border-radius: 0;
}

.modal.modal-left .modal-dialog {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    margin: 0 auto 0 0;
}

.modal.modal-right .modal-dialog {
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    margin: 0 0 0 auto;
}

/*-- Home Two --*/
.main-nav.two {
    background-color: var(--white-color);
    opacity: 1;
}

.main-nav.two.menu-shrink {
    border-bottom: 0;
}

.main-nav.two nav .navbar-nav .nav-item a {
    color: var(--black-color);
}

.main-nav.two nav .navbar-nav .nav-item a:hover,
.main-nav.two nav .navbar-nav .nav-item a:focus,
.main-nav.two nav .navbar-nav .nav-item a.active {
    color: var(--green-color);
}

.main-nav.two .side-nav ul li:nth-child(2) {
    border-left: 1px solid var(--black-color);
}

.main-nav.two .side-nav ul li .nav-srh .search-icon {
    color: var(--black-color);
}

.main-nav.two .side-nav ul li .nav-srh .search-icon:hover {
    color: var(--green-color);
}

.main-nav.two .side-nav ul li .call i {
    color: var(--black-color);
}

.main-nav.two .side-nav ul li .call a {
    color: var(--black-color);
}

.main-nav.two .side-nav ul li .call a:hover {
    color: var(--green-color);
}

.main-nav.two .side-nav ul li .modal-btn {
    background-color: var(--green-color);
}

.main-nav.two .side-nav ul li .modal-btn span {
    background-color: var(--white-color);
}

.main-nav.three {
    border-bottom: 1px solid #f5f5f5;
}

/*----- End Navbar CSS -----*/
/*----- Banner CSS -----*/
.banner-img-one {
    background-image: url("../img/home-one/banner-bg1.jpg");
}

.banner-img-two {
    background-image: url("../img/home-one/banner-bg2.jpg");
}

.banner-img-three {
    background-image: url("../img/home-one/banner-bg3.jpg");
}

.banner-item {
    height: 600px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.banner-item:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--black-color);
    opacity: .30;
}

.banner-item .banner-text {
    position: relative;
    max-width: 725px;
    margin-top: 65px;
}

.banner-item .banner-text h1 {
    color: var(--white-color);
    font-weight: 900;
    font-size: 60px;
    margin-bottom: 25px;
}

.banner-item .banner-text p {
    margin-bottom: 35px;
    color: var(--white-color);
    font-size: 18px;
}

.cmn-btn {
    display: inline-block;
    color: var(--white-color);
    background-color: var(--green-color);
    padding: 12px 35px 10px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 20px 0px #dddddd80;
    box-shadow: 0px 0px 20px 0px #dddddd80;
}

.cmn-btn:hover {
    color: var(--white-color);
    background-color: var(--black-color);
}

.banner-area {
    position: relative;
    overflow: hidden;
}

.banner-area .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 0;
    position: absolute;
    left: 0;
    bottom: 40px;
    right: 0;
    max-width: 1300px;
    margin: 0 auto;
    text-align: left;
}

.banner-area .owl-theme .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    margin: 5px 7px;
    background: var(--white-color);
    border-radius: 50%;
    position: relative;
    border: 1px solid var(--green-color);
}

.banner-area .owl-theme .owl-dots .owl-dot span:before {
    position: absolute;
    top: 50%;
    left: 50%;
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--green-color);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.banner-area .owl-theme .owl-dots .owl-dot.active span {
    background: var(--green-color);
}

.banner-area .owl-theme .owl-dots .owl-dot.active span:before {
    background-color: var(--white-color);
}

/*-- Home Two --*/
.banner-area.two {
    border-bottom: 1px solid #f5f5f5;
}

.banner-area.two .owl-theme .owl-nav.disabled + .owl-dots {
    left: auto;
    right: 100px;
}

.banner-social {
    position: absolute;
    top: 510px;
    left: -175px;
    z-index: 1;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.banner-social ul {
    margin: 0;
    padding: 0;
}

.banner-social ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 30px;
}

.banner-social ul li:last-child {
    margin-right: 0;
}

.banner-social ul li a {
    display: block;
    color: var(--black-color);
    font-size: 18px;
}

.banner-social ul li a:hover {
    color: var(--green-color);
}

.banner-social.two {
    left: unset;
    right: -135px;
}

.banner-social.two ul li a {
    color: var(--white-color);
}

.banner-social.two ul li a:hover {
    color: var(--green-color);
}

.banner-item.two:before {
    display: none;
}

.banner-item.two img {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 1290px;
    height: 100%;
}

.banner-item.two h1 {
    color: var(--black-color);
}

.banner-item.two p {
    color: var(--black-color);
}

.banner-item.two .banner-text {
    max-width: 645px;
}

/*-- Home Three --*/
.banner-area-three .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.banner-area-three .container-fluid .row {
    margin-left: 0;
    margin-right: 0;
}

.banner-area-three .container-fluid .row .col-lg-8 {
    padding-left: 0;
    padding-right: 0;
}

.banner-area-three .container-fluid .row .col-lg-4 {
    padding-left: 0;
    padding-right: 0;
}

.banner-area-three .banner-content {
    background-image: url("../img/home-three/banner-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 270px;
    padding-bottom: 200px;
    position: relative;
}

.banner-area-three .banner-content::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #000;
    opacity: .85;
}

.banner-area-three .banner-content .banner-inner {
    position: relative;
    max-width: 870px;
    margin-left: auto;
    padding-right: 220px;
}

.banner-area-three .banner-content .banner-inner h1 {
    color: var(--white-color);
    font-weight: 900;
    font-size: 60px;
    margin-bottom: 25px;
}

.banner-area-three .banner-content .banner-inner p {
    margin-bottom: 35px;
    color: var(--white-color);
    font-size: 18px;
}

.banner-area-three .banner-img {
    position: relative;
    margin-top: 85px;
    left: -90px;
}

.banner-area-three .banner-img a {
    color: var(--white-color);
    font-size: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: inline-block;
}

.banner-area-three .banner-img a:hover {
    color: var(--green-color);
}

/*----- End Banner CSS -----*/
/*----- Feature CSS -----*/
.feature-area {
    background-color: #f9f9f9;
}

.feature-item {
    position: relative;
    padding: 20px 60px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 20px 0px #dddddd80;
    border-radius: 15px;
    background: #fff;
}

.feature-item:hover i {
    top: 0;
    left: 0;
}

.feature-item:hover i:after {
    top: 0;
    left: 0;
}

.feature-item i {
    display: inline-block;
    color: var(--green-color);
    font-size: 40px;
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 1;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.feature-item i:after {
    position: absolute;
    content: '';
    width: 50px;
    height: 50px;
    top: -10px;
    left: -20px;
    border-radius: 50%;
    z-index: -1;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.feature-item h3 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 10px;
}

.feature-item p {
    margin-bottom: -5px;
    font-size: 16px;
}

/*-- Home Two --*/
.feature-area.two {
    background-color: var(--white-color);
}

/*-- Home Three --*/
.feature-area.three .feature-item {
    text-align: center;
    border: 1px solid var(--green-color);
    padding: 40px 40px 35px;
}

.feature-area.three .feature-item i {
    position: relative;
    margin-bottom: 15px;
}

/*----- End Feature CSS -----*/
/*----- Services CSS -----*/
.section-title {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
    margin-top: -4px;
}

.section-title .sub-title {
    font-weight: 700;
    font-family: var(--heading-font);
    font-size: 15px;
    color: var(--green-color);
    margin-bottom: 5px;
    display: block;
}

.section-title h2 {
    font-weight: 700;
    font-size: 40px;
    color: var(--black-color);
    margin-bottom: 0;
}

.service-area .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
}

.service-area .container-fluid .col-lg-3 {
    padding-left: 0;
    padding-right: 0;
}

.service-item:hover .service-top a img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.service-item .service-top {
    overflow: hidden;
}

.service-item .service-top a {
    display: block;
}

.service-item .service-top a img {
    width: 100%;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.service-item .service-bottom {
    padding: 25px 25px 22px;
    border-left: 1px solid #ebebeb;
    border-right: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    position: relative;
}

.service-item .service-bottom h3 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 0;
}

.service-item .service-bottom h3 a {
    display: block;
    color: var(--black-color);
}

.service-item .service-bottom h3 a:hover {
    color: var(--green-color);
}

.service-item .service-bottom .service-link {
    position: absolute;
    right: -1px;
    bottom: 0;
    display: block;
    width: 72px;
    height: 71px;
    color: var(--white-color);
    background-color: var(--green-color);
    text-align: center;
    font-size: 45px;
}

.service-item .service-bottom .service-link i {
    line-height: 71px;
}

.service-item .service-bottom .service-link:hover {
    background-color: var(--black-color);
}

/*----- End Services CSS -----*/
/*----- Counter CSS -----*/
.counter-item {
    margin-bottom: 30px;
    position: relative;
    text-align: center;
    padding: 10px 15px 25px;
    border-radius: 15px;
    -webkit-box-shadow: 0px 0px 30px 0px #dddddd80;
    box-shadow: 0px 0px 30px 0px #dddddd80;
}

.counter-item img {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.counter-item h3 {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 72px;
    color: var(--green-color);
}

.counter-item h3 span {
    font-family: var(--heading-font);
}

.counter-item p {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 20px;
    color: var(--black-color);
}

/*----- End Counter CSS -----*/
/*----- About CSS -----*/
.about-area {
    max-width: 1340px;
    margin-left: auto;
    position: relative;
}

.about-area .about-shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.about-area .about-shape img {
    height: 650px;
}

.about-area .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.about-area .container-fluid .row {
    margin-left: 0;
    margin-right: 0;
}

.about-area .container-fluid .row .col-lg-5 {
    padding-left: 100px;
    padding-right: 0;
}

.about-area .container-fluid .row .col-lg-7 {
    padding-left: 0;
    padding-right: 0;
}

.about-area .about-img {
    position: relative;
    margin-bottom: 60px;
}

.about-area .about-img img {
    width: 100%;
}

.about-area .about-img img:nth-child(1) {
    position: relative;
    z-index: 1;
    border-radius: 0 0 0 115px;
}

.about-area .about-img img:nth-child(2) {
    position: absolute;
    top: 30px;
    left: -30px;
}

.about-area .about-img a {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    z-index: 1;
    text-align: center;
    font-size: 100px;
    color: var(--white-color);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.about-area .about-img a i {
    line-height: 100px;
}

.about-area .about-img a:hover {
    color: var(--green-color);
}

.about-area .about-content {
    margin-bottom: 60px;
    padding-left: 30px;
    max-width: 665px;
    position: relative;
}

.about-area .about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-area .about-content .section-title h2 {
    color: var(--white-color);
    font-size: 35px;
}

.about-area .about-content .nav-item {
    margin-right: 30px;
    margin-bottom: 0;
    padding-left: 0;
}

.about-area .about-content .nav-item:before {
    display: none;
}

.about-area .about-content .nav-item:last-child {
    margin-right: 0;
}

.about-area .about-content .nav-link {
    padding: 0;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    border-bottom: 2px solid #fff;
    border-radius: 0 !important;
    font-family: var(--heading-font);
}

.about-area .about-content .nav-pills .nav-link.active,
.about-area .about-content .nav-pills .show > .nav-link {
    color: var(--green-color);
    background-color: transparent;
    border-bottom: 2px solid var(--green-color);
}

.about-area .about-content .nav {
    margin-bottom: 22px;
}

.about-area .about-content p {
    color: var(--white-color);
    margin-bottom: 15px;
}

.about-area .about-content ul {
    margin: 0;
    padding: 0;
}

.about-area .about-content ul li {
    list-style-type: none;
    display: block;
    color: var(--white-color);
    position: relative;
    margin-bottom: 12px;
    padding-left: 15px;
}

.about-area .about-content ul li:last-child {
    margin-bottom: 0;
}

.about-area .about-content ul li:before {
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    left: 0;
    top: 9px;
    background-color: var(--green-color);
}

.about-area .about-content .cmn-btn {
    margin-top: 30px;
}

.about-area .year {
    background-color: var(--white-color);
    width: 195px;
    text-align: center;
    position: absolute;
    bottom: -115px;
    right: 0;
    padding: 15px 15px 35px;
    border-radius: 0 45px;
}

.about-area .year:before {
    position: absolute;
    content: '';
    width: 195px;
    height: 100%;
    right: -15px;
    bottom: -15px;
    background-color: var(--green-color);
    border-radius: 0 45px;
    z-index: -1;
}

.about-area .year h2 {
    color: var(--green-color);
    font-weight: 700;
    font-size: 100px;
    color: var(--green-color);
    margin-bottom: 0;
}

.about-area .year span {
    display: block;
    font-weight: 700;
    color: var(--black-color);
    font-family: var(--heading-font);
    margin-top: -12px;
}

/*-- Home Two --*/
.about-area.two {
    max-width: 100%;
    margin-left: 0;
}

.about-area.two .about-img {
    position: relative;
    margin-bottom: 70px;
}

.about-area.two .about-img img:nth-child(1) {
    border-radius: 0px 55px;
    z-index: -1;
}

.about-area.two .about-content {
    padding-left: 80px;
    max-width: 100%;
    margin-bottom: 30px;
}

.about-area.two .about-content .section-title h2 {
    color: var(--black-color);
}

.about-area.two .about-content .nav-link {
    color: var(--black-color);
    border-bottom: 2px solid var(--black-color);
}

.about-area.two .about-content p {
    color: var(--grey-color);
}

.about-area.two .about-content ul li {
    color: var(--grey-color);
}

.about-area.two .year {
    bottom: 45px;
    right: -30px;
}

/*----- End About CSS -----*/
/*----- Work CSS -----*/
.work-area .work-left {
    margin-bottom: 30px;
}

.work-area .work-left h2 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px;
}

.work-area .work-left span {
    display: block;
    margin-bottom: 30px;
    padding-right: 10px;
}

.work-area .work-left ul {
    margin: 0;
    padding: 0;
}

.work-area .work-left ul li {
    list-style-type: none;
    display: block;
    position: relative;
    -webkit-box-shadow: 0px 0px 20px 0px #dddddd80;
    box-shadow: 0px 0px 20px 0px #dddddd80;
    margin-bottom: 30px;
    padding: 30px 30px 30px 150px;
    border-radius: 15px;
}

.work-area .work-left ul li:last-child {
    margin-bottom: 0;
}

.work-area .work-left ul li:hover i {
    color: var(--white-color);
    background-color: var(--green-color);
}

.work-area .work-left ul li i {
    display: inline-block;
    text-align: center;
    width: 100px;
    height: 100px;
    line-height: 100px;
    color: var(--green-color);
    background-color: #e5f5f2;
    font-size: 55px;
    position: absolute;
    top: 36px;
    left: 30px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.work-area .work-left ul li h3 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}

.work-area .work-left ul li p {
    margin-bottom: 0;
    font-size: 15px;
}

.work-area .work-right {
    margin-bottom: 30px;
    background-color: #f6f6f6;
    padding: 30px 30px;
    border-radius: 15px;
}

.work-area .work-right h3 {
    color: var(--green-color);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}

.work-area .work-right p {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

.work-area .work-right .form-group {
    margin-bottom: 15px;
}

.work-area .work-right .form-group label {
    margin-bottom: 5px;
    font-size: var(--all-size);
    color: var(--grey-color);
}

.work-area .work-right .form-group .form-control {
    height: 50px;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    background-color: var(--white-color);
    padding-left: 15px;
    font-size: 15px;
}

.work-area .work-right .form-group .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--green-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.work-area .work-right .form-group .nice-select {
    display: block;
    width: 100%;
    border-radius: 5px;
    height: 50px;
    font-size: 15px;
    line-height: 50px;
    margin-bottom: 15px;
}

.work-area .work-right .form-group .nice-select .list {
    width: 100%;
    display: block;
}

.work-area .work-right .cmn-btn {
    width: 100%;
    border-radius: 5px;
    display: block;
    margin-top: 20px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    font-weight: 700;
}

.work-area .work-right .form-check-inline .form-check-input {
    margin-top: 3px;
}

.work-area .work-right .form-check-inline .form-check-input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

/*-- Home Two --*/
.work-area.two .work-right {
    background-color: var(--green-color);
}

.work-area.two .work-right h3 {
    color: var(--white-color);
}

.work-area.two .work-right p {
    color: var(--white-color);
}

.work-area.two .work-right .form-group label {
    color: var(--white-color);
}

.work-area.two .work-right .form-check-label {
    color: var(--white-color);
}

.work-area.two .work-right .cmn-btn {
    color: var(--white-color);
    background-color: var(--black-color);
}

.work-area.two .work-right .cmn-btn:hover {
    color: var(--black-color);
    background-color: var(--white-color);
}

/*-- Home Three --*/
.work-area.three .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.work-area.three .section-title .sub-title {
    margin-bottom: 5px;
}

.work-area.three .section-title h2 {
    font-size: 24px;
}

.work-area.three .section-title p {
    margin-bottom: 0;
    margin-top: 12px;
}

.work-area.three .work-left ul li {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 30px;
    padding: 0;
    padding-left: 90px;
}

.work-area.three .work-left ul li i {
    width: unset;
    height: unset;
    line-height: unset;
    color: var(--green-color);
    background-color: unset;
    top: -8px;
    left: 0;
}

.work-area.three .skill-wrap {
    overflow: hidden;
    padding-right: 15px;
}

.work-area.three .skill {
    margin-bottom: 35px;
    position: relative;
}

.work-area.three .skill:before {
    width: 100%;
    height: 6px;
    content: "";
    display: block;
    position: absolute;
    background: #eaeaea;
    bottom: 0;
}

.work-area.three .skill h3 {
    font-size: 15px;
    font-weight: 500;
    color: #262424;
    margin-bottom: 15px;
}

.work-area.three .skill-bar {
    width: 100%;
    height: 6px;
    background: var(--green-color);
    display: block;
    position: relative;
}

.work-area.three .skill-bar:before {
    position: absolute;
    content: '';
    top: -7px;
    right: -2px;
    width: 3px;
    height: 20px;
    border-radius: 12px;
    background-color: var(--green-color);
}

.work-area.three .skill-bar span {
    position: absolute;
    top: -28px;
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 0;
    display: inline-block;
}

.work-area.three .skill1 {
    width: 85%;
}

.work-area.three .skill1 .skill-count1 {
    right: 7px;
}

.work-area.three .skill2 {
    width: 95%;
}

.work-area.three .skill2 .skill-count2 {
    right: 7px;
}

.work-area.three .skill3 {
    width: 80%;
}

.work-area.three .skill3 .skill-count3 {
    right: 7px;
}

.work-area.three .skill4 {
    width: 100%;
}

.work-area.three .skill4 .skill-count4 {
    right: 7px;
}

.work-area.three .skill5 {
    width: 85%;
}

.work-area.three .skill5 .skill-count5 {
    right: 7px;
}

.work-area.three .work-img {
    margin-bottom: 30px;
}

.work-area.three .work-img img {
    width: 100%;
}

.work-area.four .work-left h2 {
    font-size: 36px;
}

.work-area.four .accordion {
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
}

.work-area.four .accordion p {
    display: none;
    padding-top: 25px;
    padding-left: 30px;
    margin-bottom: 0;
}

.work-area.four .accordion a {
    width: 100%;
    display: block;
    cursor: pointer;
    padding-bottom: 10px;
    border-bottom: 1px solid #e7e7e7;
    color: var(--black-color);
    font-size: 18px;
    padding-left: 30px;
    font-weight: 500;
}

.work-area.four .accordion a:after {
    position: absolute;
    left: 0;
    content: "+";
    top: -5px;
    color: #000000;
    font-size: 25px;
    font-weight: 500;
}

.work-area.four .accordion a.active:after {
    content: "-";
    font-size: 25px;
}

.work-area.four .accordion li {
    position: relative;
    list-style-type: none;
    margin-bottom: 30px;
    display: block;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.work-area.four .accordion li:first-child {
    border-top: 0;
}

.work-area.four .accordion li:last-child {
    margin-bottom: 0;
}

/*-- About --*/
.work-area.five {
    background-color: #f6f6f6;
    padding-bottom: 290px;
}

.work-area.five .counter-item {
    background-color: var(--white-color);
}

.work-area.five .counter-item.one {
    margin-top: 30px;
}

.work-area.five .counter-item.two {
    margin-top: -30px;
}

/*----- End Work CSS -----*/
/*----- Client CSS -----*/
.client-area {
    position: relative;
    background-image: url("../img/home-one/client-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.client-area:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--black-color);
    opacity: .85;
}

.client-area .section-title {
    margin-bottom: 35px;
}

.client-area .section-title .sub-title {
    color: var(--white-color);
}

.client-area .section-title h2 {
    color: var(--white-color);
}

.client-area .section-title p {
    margin-bottom: 0;
    color: var(--white-color);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}

.client-area .client-item {
    -webkit-box-shadow: 0px 0px 14px 0px #f9a01b;
    box-shadow: 0px 0px 14px 0px #f9a01b;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 30px;
    margin-top: 15px;
    padding: 45px 20px 40px 40px;
    background-color: var(--white-color);
    border: 1px solid transparent;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border-radius: 15px;
}

.client-area .client-item:hover {
    border: 1px solid var(--green-color);
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 5px;
}

.client-area .client-item i {
    position: absolute;
    right: 50px;
    top: 20px;
    font-size: 75px;
    display: inline-block;
    color: #e5f5f2;
}

.client-area .client-item .client-top {
    position: relative;
    padding-left: 85px;
    padding-top: 5px;
    margin-bottom: 30px;
}

.client-area .client-item .client-top img {
    max-width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
    border-radius: 50%;
}

.client-area .client-item .client-top h3 {
    color: var(--green-color);
    font-size: 20px;
    margin-bottom: 8px;
}

.client-area .client-item .client-top span {
    display: block;
}

.client-area .client-item p {
    margin-bottom: 0;
}

.client-area .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 0;
    line-height: 0;
    margin-bottom: -4px;
}

.client-area .owl-theme .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    margin: 5px 7px;
    background: #ccebe5;
    border-radius: 50%;
    position: relative;
}

.client-area .owl-theme .owl-dots .owl-dot span:before {
    position: absolute;
    top: 50%;
    left: 50%;
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--green-color);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.client-area .owl-theme .owl-dots .owl-dot.active span {
    background: var(--green-color);
}

.client-area .owl-theme .owl-dots .owl-dot.active span:before {
    background-color: var(--white-color);
}

/*-- Home Two --*/
.client-area.two .client-item {
    text-align: center;
    padding: 45px 30px 40px 30px;
}

.client-area.two .client-item i {
    position: relative;
    right: 0;
    top: 0;
    font-size: 40px;
    display: inline-block;
    color: var(--white-color);
    background-color: var(--green-color);
    width: 65px;
    height: 65px;
    line-height: 65px;
    border-radius: 50%;
    margin-bottom: 30px;
}

.client-area.two .client-item p {
    margin-bottom: 30px;
}

.client-area.two .client-item .client-top {
    margin-bottom: 0;
    max-width: 245px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

/*----- End Client CSS -----*/
/*----- Team CSS -----*/
.team-item {
    margin-bottom: 30px;
    text-align: center;
}

.team-item:hover .team-top ul {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

.team-item .team-top {
    position: relative;
    margin-bottom: 25px;
    overflow: hidden;
}

.team-item .team-top img {
    width: 100%;
}

.team-item .team-top ul {
    margin: 0;
    padding: 0;
    background-color: var(--green-color);
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    bottom: -20px;
    right: 0;
    left: 0;
    padding-top: 12px;
    padding-bottom: 6px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.team-item .team-top ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 5px;
    margin-left: 5px;
}

.team-item .team-top ul li a {
    display: block;
    color: var(--white-color);
    font-size: 18px;
}

.team-item .team-top ul li a:hover {
    color: var(--black-color);
}

.team-item h3 {
    color: var(--green-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.team-item span {
    display: block;
    font-size: 15px;
    margin-top: -2px;
}

/*-- Home Three --*/
.team-area.three {
    background-color: #f6f6f6;
}

/*----- End Team CSS -----*/
/*----- Logo CSS -----*/
.logo-area {
    background-color: #f6f6f6;
}

.logo-area .owl-carousel .owl-item img {
    width: unset !important;
    margin-left: auto;
    margin-right: auto;
}

.logo-item {
    text-align: center;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

/*----- End Logo CSS -----*/
/*----- Blog CSS -----*/
.blog-item {
    margin-bottom: 30px;
}

.blog-item:hover .blog-top a img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.blog-item .blog-top {
    overflow: hidden;
    border-radius: 15px;
    -webkit-box-shadow: 0px 0px 20px 0px #dddddd80;
    box-shadow: 0px 0px 20px 0px #dddddd80;
}

.blog-item .blog-top a {
    display: block;
}

.blog-item .blog-top a img {
    width: 100%;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.blog-item .blog-bottom {
    border-radius: 15px;
    -webkit-box-shadow: 0px 0px 20px 0px #dddddd80;
    box-shadow: 0px 0px 20px 0px #dddddd80;
    padding: 20px 22px 25px;
}

.blog-item .blog-bottom ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.blog-item .blog-bottom ul li {
    list-style-type: none;
    display: inline-block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    color: var(--black-color);
}

.blog-item .blog-bottom ul li:last-child {
    text-align: right;
}

.blog-item .blog-bottom ul li i {
    display: inline-block;
    color: var(--green-color);
    margin-right: 2px;
    font-size: 18px;
    position: relative;
    top: 2px;
}

.blog-item .blog-bottom ul li span {
    display: inline-block;
}

.blog-item .blog-bottom ul li a {
    display: inline-block;
    color: var(--black-color);
}

.blog-item .blog-bottom ul li a:hover {
    color: var(--green-color);
}

.blog-item .blog-bottom h3 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
}

.blog-item .blog-bottom h3 a {
    color: var(--black-color);
}

.blog-item .blog-bottom h3 a:hover {
    color: var(--green-color);
}

.blog-item .blog-bottom p {
    margin-bottom: 20px;
}

/*----- End Blog CSS -----*/
/*----- Footer CSS -----*/
footer {
    background-color: var(--black-color);
}

.footer-item {
    margin-bottom: 30px;
}

.footer-item h3 {
    font-weight: 700;
    font-size: 20px;
    color: var(--white-color);
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 30px;
}

.footer-item h3:before {
    position: absolute;
    content: '';
    width: 75px;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--green-color);
}

.footer-item .footer-logo a {
    display: block;
}

.footer-item .footer-logo a img {
    margin-bottom: 15px;
}

.footer-item .footer-logo p {
    color: #a3a3a3;
    margin-bottom: 18px;
}

.footer-item .footer-logo ul {
    margin: 0;
    padding: 0;
}

.footer-item .footer-logo ul li {
    list-style-type: none;
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
}

.footer-item .footer-logo ul li:last-child {
    margin-bottom: 0;
}

.footer-item .footer-logo ul li i {
    display: inline-block;
    color: var(--green-color);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 2px;
}

.footer-item .footer-logo ul li span {
    display: block;
    color: #a3a3a3;
}

.footer-item .footer-logo ul li a {
    color: #a3a3a3;
}

.footer-item .footer-logo ul li a:hover {
    color: var(--green-color);
}

.footer-item .footer-service ul {
    margin: 0;
    padding: 0;
}

.footer-item .footer-service ul li {
    list-style-type: none;
    display: block;
    margin-bottom: 10px;
}

.footer-item .footer-service ul li a {
    display: block;
    color: #a3a3a3;
}

.footer-item .footer-service ul li a:hover {
    color: var(--green-color);
}

.footer-item .footer-post ul {
    margin: 0;
    padding: 0;
}

.footer-item .footer-post ul li {
    list-style-type: none;
    display: block;
    position: relative;
    padding-left: 90px;
    margin-bottom: 20px;
}

.footer-item .footer-post ul li:last-child {
    margin-bottom: 0;
}

.footer-item .footer-post ul li img {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 80px;
    height: 50px;
    border-radius: 5px;
    object-fit: cover;
}

.footer-item .footer-post ul li a {
    display: block;
    color: #a3a3a3;
    margin-bottom: 3px;
}

.footer-item .footer-post ul li a:hover {
    color: var(--green-color);
}

.footer-item .footer-post ul li span {
    color: #a3a3a3;
    font-size: 14px;
}

.footer-item .footer-touch p {
    color: #a3a3a3;
    margin-bottom: 12px;
}

.footer-item .footer-touch .form-control {
    border: 1px solid #a3a3a3;
    height: 50px;
    padding-left: 15px;
    background-color: transparent;
    font-size: 15px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border-radius: 0;
    margin-bottom: 15px;
    color: var(--white-color);
}

.footer-item .footer-touch .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--green-color);
}

.footer-item .footer-touch ::-webkit-input-placeholder {
    color: #ebebeb;
}

.footer-item .footer-touch :-ms-input-placeholder {
    color: #ebebeb;
}

.footer-item .footer-touch ::-ms-input-placeholder {
    color: #ebebeb;
}

.footer-item .footer-touch ::placeholder {
    color: #ebebeb;
}

.footer-item .footer-touch .cmn-btn {
    border: 0;
    border-radius: 0;
    display: block;
    width: 100%;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    opacity: 1;
}

.footer-item .footer-touch .cmn-btn:hover {
    color: var(--black-color);
    background-color: var(--white-color);
}

.footer-item .footer-touch .validation-danger {
    color: #dc3545;
    margin-top: 10px;
}

.footer-item .footer-touch .validation-success {
    color: #28a745;
    margin-top: 10px;
}

/*----- End Footer CSS -----*/
/*----- Copyright CSS -----*/
.copyright-area {
    background-color: var(--black-color);
    border-top: 1px solid #313131;
    padding-top: 25px;
    padding-bottom: 25px;
}

.copyright-area p {
    margin-bottom: 0;
    color: #f5f5f5;
    font-size: 15px;
}

.copyright-area p a {
    display: inline-block;
    color: var(--green-color);
    font-weight: 700;
}

.copyright-area p a:hover {
    color: var(--white-color);
}

.copyright-area ul {
    margin: 0;
    padding: 0;
    text-align: right;
}

.copyright-area ul li {
    list-style-type: none;
    display: inline-block;
    font-size: 15px;
}

.copyright-area ul li span {
    display: inline-block;
    color: #f5f5f5;
    margin-left: 3px;
    margin-right: 3px;
}

.copyright-area ul li a {
    color: #f5f5f5;
    display: inline-block;
}

.copyright-area ul li a:hover {
    color: var(--green-color);
}

/*----- End Copyright CSS -----*/
/*----- Back to Top -----*/
#toTop {
    position: fixed;
    bottom: 30px;
    right: 0;
    cursor: pointer;
    display: none;
    z-index: 10;
}

.back-to-top-btn i {
    background: var(--green-color);
    color: var(--white-color);
    height: 50px;
    width: 50px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
    font-size: 28px;
    border-radius: 50%;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    margin-right: 28px;
}

.back-to-top-btn i:hover {
    background-color: var(--black-color);
    color: var(--white-color);
}

/*----- End Back to Top -----*/
/*----- Preloader -----*/
.loader {
    position: fixed;
    z-index: 99999;
    background: var(--green-color);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.loading-wrapper {
    position: relative;
    min-height: 120px;
    display: block;
}

.loading {
    position: absolute;
    min-height: 100px;
    top: 50%;
    left: 50%;
    right: 0;
    bottom: 0;
    will-change: transform;
}

.loading:after {
    content: '';
    width: 50px;
    height: 50px;
    background: #fff;
    -webkit-animation: preloader 500ms linear infinite;
    animation: preloader 500ms linear infinite;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
}

.loading:before {
    content: '';
    width: 50px;
    height: 5px;
    background: #000;
    -webkit-animation: preloader-shadow 500ms linear infinite;
    animation: preloader-shadow 500ms linear infinite;
    opacity: 0.1;
    position: absolute;
    top: 59px;
    left: 0;
    border-radius: 50%;
}

@-webkit-keyframes preloader {
    17% {
        border-bottom-right-radius: 3px;
    }

    25% {
        -webkit-transform: translateY(9px) rotate(22.5deg);
        transform: translateY(9px) rotate(22.5deg);
    }

    50% {
        -webkit-transform: scale(1, 0.9) translateY(18px) rotate(45deg);
        transform: scale(1, 0.9) translateY(18px) rotate(45deg);
        border-bottom-right-radius: 40px;
    }

    75% {
        -webkit-transform: translateY(9px) rotate(67.5deg);
        transform: translateY(9px) rotate(67.5deg);
    }

    100% {
        -webkit-transform: translateY(0) rotate(90deg);
        transform: translateY(0) rotate(90deg);
    }
}

@keyframes preloader {
    17% {
        border-bottom-right-radius: 3px;
    }

    25% {
        -webkit-transform: translateY(9px) rotate(22.5deg);
        transform: translateY(9px) rotate(22.5deg);
    }

    50% {
        -webkit-transform: scale(1, 0.9) translateY(18px) rotate(45deg);
        transform: scale(1, 0.9) translateY(18px) rotate(45deg);
        border-bottom-right-radius: 40px;
    }

    75% {
        -webkit-transform: translateY(9px) rotate(67.5deg);
        transform: translateY(9px) rotate(67.5deg);
    }

    100% {
        -webkit-transform: translateY(0) rotate(90deg);
        transform: translateY(0) rotate(90deg);
    }
}

@-webkit-keyframes preloader-shadow {
    50% {
        -webkit-transform: scale(1.2, 1);
        transform: scale(1.2, 1);
    }
}

@keyframes preloader-shadow {
    50% {
        -webkit-transform: scale(1.2, 1);
        transform: scale(1.2, 1);
    }
}

/*----- End Preloader -----*/
/*----- Pricing -----*/
.pricing-item {
    margin-bottom: 30px;
    text-align: center;
}

.pricing-item:hover .pricing-bottom {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pricing-item .pricing-top {
    background-color: var(--green-color);
    padding: 12px 15px 18px;
}

.pricing-item .pricing-top p {
    margin-bottom: 3px;
    font-weight: 700;
    font-size: 24px;
    color: var(--white-color);
    font-family: var(--heading-font);
}

.pricing-item .pricing-top h3 {
    font-weight: 700;
    color: var(--white-color);
    font-size: 72px;
    margin-bottom: 5px;
}

.pricing-item .pricing-top h3 span {
    display: inline-block;
    font-size: 40px;
    margin-left: -8px;
}

.pricing-item .pricing-top .month {
    display: inline-block;
    font-size: 18px;
    font-family: var(--heading-font);
    color: var(--white-color);
    font-weight: 700;
}

.pricing-item .pricing-bottom {
    -webkit-box-shadow: 0px 0px 20px 0px #dddddd80;
    box-shadow: 0px 0px 20px 0px #dddddd80;
    padding: 30px 30px 30px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.pricing-item .pricing-bottom ul {
    margin: 0;
    padding: 0;
}

.pricing-item .pricing-bottom ul li {
    list-style-type: none;
    display: block;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 12px;
    margin-bottom: 14px;
}

.pricing-item .pricing-bottom ul li:last-child {
    border-bottom: 0;
}

/*----- End Pricing -----*/
/*----- Page Title -----*/
.page-title-area {
    background-image: url("../img/page-title-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 500px;
    position: relative;
}

.page-title-area:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: .70;
}

.page-title-area .title-content {
    position: relative;
    margin-top: 90px;
    text-align: center;
}

.page-title-area .title-content h2 {
    color: var(--white-color);
    font-weight: 700;
    font-size: 50px;
    margin-bottom: 10px;
}

.page-title-area ul {
    margin: 0;
    padding: 0;
}

.page-title-area ul li {
    list-style-type: none;
    display: inline-block;
    color: var(--white-color);
}

.page-title-area ul li a {
    display: block;
    color: var(--white-color);
}

.page-title-area ul li a:hover {
    color: var(--green-color);
}

.page-title-area ul li span {
    margin-left: 3px;
    margin-right: 3px;
}

/*----- End Page Title -----*/
/*----- Video -----*/
.video-area {
    text-align: center;
    position: relative;
    margin-top: -320px;
}

.video-area a {
    position: absolute;
    color: var(--white-color);
    font-size: 65px;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.video-area a:hover {
    color: var(--green-color);
}

/*----- End Video -----*/
/*----- Service Details -----*/
.widget-area .search {
    margin-bottom: 40px;
}

.widget-area .search form {
    position: relative;
}

.widget-area .search form .form-control {
    height: 50px;
    padding-left: 15px;
    border: 1px solid #e7e7e7;
    border-radius: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    font-size: 15px;
    color: var(--black-color);
}

.widget-area .search form .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--green-color);
}

.widget-area .search form ::-webkit-input-placeholder {
    color: #555555;
}

.widget-area .search form :-ms-input-placeholder {
    color: #555555;
}

.widget-area .search form ::-ms-input-placeholder {
    color: #555555;
}

.widget-area .search form ::placeholder {
    color: #555555;
}

.widget-area .search form .btn {
    color: var(--white-color);
    background-color: var(--green-color);
    font-size: 20px;
    border-radius: 0;
    padding: 0;
    width: 55px;
    height: 50px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    position: absolute;
    top: 0;
    right: 0;
}

.widget-area .search form .btn i {
    line-height: 50px;
}

.widget-area .search form .btn:hover {
    background-color: var(--black-color);
}

.widget-area .widget-item {
    margin-bottom: 30px;
}

.widget-area .widget-item h3 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 25px;
    padding-bottom: 8px;
    position: relative;
}

.widget-area .widget-item h3:before {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--green-color);
}

.widget-area .cat ul {
    margin: 0;
    padding: 0;
}

.widget-area .cat ul li {
    list-style-type: none;
    display: block;
}

.widget-area .cat ul li:last-child a {
    margin-bottom: 0;
}

.widget-area .cat ul li a {
    display: block;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
    position: relative;
}

.widget-area .cat ul li a:before {
    position: absolute;
    content: '';
    width: 2px;
    height: 18px;
    left: 0;
    top: 2px;
    background-color: var(--green-color);
    opacity: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.widget-area .cat ul li a:hover {
    padding-left: 15px;
}

.widget-area .cat ul li a:hover:before {
    opacity: 1;
}

.widget-area .open ul {
    margin: 0;
    padding: 0;
}

.widget-area .open ul li {
    list-style-type: none;
    display: block;
    position: relative;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
}

.widget-area .open ul li:last-child {
    margin-bottom: 0;
}

.widget-area .open ul li span {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
}

.widget-area .quote .form-group {
    margin-bottom: 20px;
}

.widget-area .quote .form-group .form-control {
    height: 50px;
    border: 1px solid #eeeeee;
    padding-left: 15px;
    font-size: 15px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border-radius: 0;
}

.widget-area .quote .form-group .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--green-color);
}

.widget-area .quote .form-group ::-webkit-input-placeholder {
    color: var(--grey-color);
}

.widget-area .quote .form-group :-ms-input-placeholder {
    color: var(--grey-color);
}

.widget-area .quote .form-group ::-ms-input-placeholder {
    color: var(--grey-color);
}

.widget-area .quote .form-group ::placeholder {
    color: var(--grey-color);
}

.widget-area .quote .cmn-btn {
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.widget-area .post ul {
    margin: 0;
    padding: 0;
}

.widget-area .post ul li {
    list-style-type: none;
    display: block;
    margin-bottom: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.widget-area .post ul li:last-child {
    margin-bottom: 0;
}

.widget-area .post ul li .img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
}

.widget-area .post ul li .content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66%;
    flex: 0 0 66%;
    max-width: 66%;
    margin-left: 10px;
}

.widget-area .post ul li .content a {
    display: block;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 3px;
    font-size: 15px;
}

.widget-area .post ul li .content a:hover {
    color: var(--green-color);
}

.widget-area .post ul li .content span {
    display: block;
    font-size: 14px;
}

.widget-area .tag h3 {
    margin-bottom: 15px;
}

.widget-area .tag ul {
    margin: 0;
    padding: 0;
}

.widget-area .tag ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 8px;
    margin-top: 10px;
}

.widget-area .tag ul li a {
    display: block;
    font-size: 14px;
    border: 1px solid var(--grey-color);
    color: var(--grey-color);
    padding: 8px 12px;
}

.widget-area .tag ul li a:hover {
    color: var(--white-color);
    background-color: var(--green-color);
    border: 1px solid var(--green-color);
}

.service-details-area .details-item {
    margin-bottom: 30px;
}

.service-details-area .details-item img {
    margin-bottom: 30px;
}

.service-details-area .details-item h3 {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 15px;
}

.service-details-area .details-item p {
    margin-bottom: 15px;
}

.service-details-area .details-item p:last-child {
    margin-bottom: 0;
}

.service-details-area .details-item .p-one {
    margin-bottom: 30px;
}

.service-details-area .details-item .special-item {
    margin-bottom: 30px;
    text-align: center;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.service-details-area .details-item .special-item:hover {
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.service-details-area .details-item .special-item i {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    font-size: 50px;
    color: var(--green-color);
    background-color: var(--white-color);
    -webkit-box-shadow: 0px 0px 20px 0px #dddddd80;
    box-shadow: 0px 0px 20px 0px #dddddd80;
    margin-bottom: 18px;
}

.service-details-area .details-item .special-item h4 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 0;
}

/*----- End Service Details -----*/
/*----- Blog Style One -----*/
.blog-style-one .blog-item {
    margin-bottom: 30px;
}

.blog-style-one .blog-item a {
    display: block;
}

.blog-style-one .blog-item a img {
    width: 100%;
}

.blog-style-one .blog-item .blog-inner {
    border-left: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    border-right: 1px solid #ebebeb;
    padding: 30px 30px 30px;
}

.blog-style-one .blog-item .blog-inner ul {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
}

.blog-style-one .blog-item .blog-inner ul li {
    list-style-type: none;
    display: inline-block;
    color: var(--black-color);
    margin-right: 15px;
}

.blog-style-one .blog-item .blog-inner ul li:last-child {
    margin-right: 0;
}

.blog-style-one .blog-item .blog-inner ul li i {
    display: inline-block;
    font-size: 17px;
    position: relative;
    top: 2px;
    color: var(--green-color);
}

.blog-style-one .blog-item .blog-inner ul li a {
    display: inline-block;
    color: var(--black-color);
}

.blog-style-one .blog-item .blog-inner ul li a:hover {
    color: var(--green-color);
}

.blog-style-one .blog-item .blog-inner ul li span {
    display: inline-block;
}

.blog-style-one .blog-item .blog-inner h3 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 30px;
}

.blog-style-one .blog-item .blog-inner h3 a {
    display: block;
    color: var(--black-color);
}

.blog-style-one .blog-item .blog-inner h3 a:hover {
    color: var(--green-color);
}

.blog-style-one .blog-item .blog-inner p {
    margin-bottom: 22px;
}

.blog-style-one .blog-item .blog-inner .cmn-btn {
    display: inline-block;
    padding: 14px 45px 12px;
}

.pagination-area {
    margin-bottom: 30px;
}

.pagination-area ul {
    margin: 0;
    padding: 0;
}

.pagination-area ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 8px;
}

.pagination-area ul li:last-child {
    margin-right: 0;
}

.pagination-area ul li a {
    display: block;
    color: var(--black-color);
    border: 1px solid var(--black-color);
    padding: 8px 20px 5px;
}

.pagination-area ul li a:hover,
.pagination-area ul li a.active {
    color: var(--white-color);
    border: 1px solid var(--green-color);
    background-color: var(--green-color);
}

.pagination-area.two {
    text-align: center;
    margin-bottom: 0;
}

/*----- End Blog Style One -----*/
/*----- Blog Details -----*/
.blog-details-area .details-item {
    margin-bottom: 30px;
}

.blog-details-area .details-item .details-img {
    margin-bottom: 30px;
}

.blog-details-area .details-item .details-img .details-img-inner {
    padding: 30px 30px 30px;
    border-left: 1px solid #ebebeb;
    border-right: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
}

.blog-details-area .details-item .details-img .details-img-inner ul {
    margin: 0;
    padding: 0;
    margin-bottom: 5px;
}

.blog-details-area .details-item .details-img .details-img-inner ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 15px;
    font-size: 15px;
}

.blog-details-area .details-item .details-img .details-img-inner ul li:last-child {
    margin-right: 0;
}

.blog-details-area .details-item .details-img .details-img-inner ul li i {
    display: inline-block;
    color: var(--green-color);
    font-size: 17px;
    margin-right: 2px;
    position: relative;
    top: 2px;
}

.blog-details-area .details-item .details-img .details-img-inner ul li a {
    display: inline-block;
    color: var(--black-color);
}

.blog-details-area .details-item .details-img .details-img-inner ul li a:hover {
    color: var(--green-color);
}

.blog-details-area .details-item .details-img .details-img-inner ul li span {
    display: inline-block;
}

.blog-details-area .details-item .details-img .details-img-inner h3 {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 12px;
}

.blog-details-area .details-item .details-img .details-img-inner p {
    margin-bottom: 10px;
}

.blog-details-area .details-item .details-img .details-img-inner p:last-child {
    margin-bottom: 0;
}

.blog-details-area .details-item .details-img .details-img-inner blockquote {
    background-color: #f6f6f6;
    border-left: 2px solid var(--green-color);
    text-align: center;
    padding: 50px 90px 30px;
    font-size: 20px;
    color: var(--black-color);
    margin-bottom: 20px;
    margin-top: 20px;
    font-weight: 600;
    position: relative;
}

.blog-details-area .details-item .details-img .details-img-inner blockquote i {
    display: inline-block;
    color: var(--black-color);
    font-size: 55px;
    position: absolute;
    top: 30px;
    left: 48px;
}

.blog-details-area .details-item .details-tag {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #ebebeb;
    padding: 20px 30px;
    margin-bottom: 50px;
}

.blog-details-area .details-item .details-tag ul {
    margin: 0;
    padding: 0;
}

.blog-details-area .details-item .details-tag ul li {
    list-style-type: none;
    display: inline-block;
}

.blog-details-area .details-item .details-tag .left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

.blog-details-area .details-item .details-tag .left ul li:last-child a {
    margin-right: 0;
}

.blog-details-area .details-item .details-tag .left ul li span {
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    margin-right: 5px;
}

.blog-details-area .details-item .details-tag .left ul li a {
    display: inline-block;
    color: var(--grey-color);
    margin-right: 10px;
}

.blog-details-area .details-item .details-tag .left ul li a:hover {
    color: var(--green-color);
}

.blog-details-area .details-item .details-tag .right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    text-align: right;
}

.blog-details-area .details-item .details-tag .right ul li:last-child a {
    margin-right: 0;
}

.blog-details-area .details-item .details-tag .right ul li span {
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    margin-right: 5px;
}

.blog-details-area .details-item .details-tag .right ul li a {
    display: inline-block;
    color: var(--grey-color);
    margin-right: 10px;
    font-size: 20px;
    position: relative;
    top: 3px;
}

.blog-details-area .details-item .details-tag .right ul li a:hover {
    color: var(--green-color);
}

.blog-details-area .details-item .details-comments {
    margin-bottom: 50px;
}

.blog-details-area .details-item .details-comments h3 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 25px;
    padding-bottom: 8px;
    position: relative;
}

.blog-details-area .details-item .details-comments h3:before {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--green-color);
}

.blog-details-area .details-item .details-comments ul {
    margin: 0;
    padding: 0;
}

.blog-details-area .details-item .details-comments ul li {
    list-style-type: none;
    display: block;
    position: relative;
    padding-left: 100px;
    margin-bottom: 30px;
}

.blog-details-area .details-item .details-comments ul li:last-child {
    margin-bottom: 0;
}

.blog-details-area .details-item .details-comments ul li img {
    position: absolute;
    top: 0;
    left: 0;
}

.blog-details-area .details-item .details-comments ul li h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.blog-details-area .details-item .details-comments ul li span {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
}

.blog-details-area .details-item .details-comments ul li p {
    margin-bottom: 8px;
}

.blog-details-area .details-item .details-comments ul li a {
    display: inline-block;
    color: var(--green-color);
}

.blog-details-area .details-item .details-comments ul li a:hover {
    color: var(--black-color);
}

.blog-details-area .details-item .details-form {
    background-color: #f5f5f5;
    padding: 28px 30px 30px;
}

.blog-details-area .details-item .details-form h3 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    position: relative;
}

.blog-details-area .details-item .details-form h3:before {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--green-color);
}

.blog-details-area .details-item .details-form span {
    display: block;
    margin-bottom: 15px;
}

.blog-details-area .details-item .details-form .form-group {
    margin-bottom: 30px;
}

.blog-details-area .details-item .details-form .form-group label {
    margin-bottom: 5px;
    font-weight: 500;
}

.blog-details-area .details-item .details-form .form-group .form-control {
    height: 50px;
    border-radius: 0;
    border: 1px solid #fff;
    padding-left: 20px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.blog-details-area .details-item .details-form .form-group .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--green-color);
}

.blog-details-area .details-item .details-form .form-group textarea {
    padding-top: 15px;
    height: auto !important;
}

.blog-details-area .details-item .details-form .form-check {
    margin-bottom: 30px;
}

.blog-details-area .details-item .details-form .cmn-btn {
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border: 0;
}

.blog-details-area .details-item .details-form .form-check-input {
    margin-top: 4px;
}

/*----- End Blog Details -----*/
/*----- Contact -----*/
.contact-area.two .contact-form {
    margin-bottom: 30px;
    text-align: center;
}

.contact-area.two .contact-form h3 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-area.two .contact-form span {
    display: block;
    margin-bottom: 30px;
}

.contact-area.two .contact-form .form-group {
    margin-bottom: 30px;
    text-align: left;
}

.contact-area.two .contact-form .form-group label {
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-area.two .contact-form .form-group .form-control {
    height: 50px;
    border: 0;
    background-color: #f5f5f5;
    padding-left: 20px;
    border-radius: 5px;
}

.contact-area.two .contact-form .form-group .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
}

.contact-area.two .contact-form .form-group textarea {
    padding-top: 15px;
    height: auto !important;
}

.contact-area.two .contact-form .form-group .list-unstyled {
    margin-top: 10px;
    font-size: 14px;
    color: #dc3545;
}

.contact-area.two .contact-form .text-danger {
    margin-bottom: 0;
    margin-top: 10px;
    font-size: 20px;
}

.contact-area.two .contact-form .cmn-btn {
    border: 0;
    opacity: 1;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.contact-area.two .contact-place {
    text-align: center;
}

.contact-area.two .contact-place .contact-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.contact-area.two .contact-place .contact-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.contact-area.two .contact-place .contact-item i {
    display: inline-block;
    color: var(--green-color);
    font-size: 40px;
    margin-bottom: 8px;
}

.contact-area.two .contact-place .contact-item h4 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-area.two .contact-place .contact-item ul {
    margin: 0;
    padding: 0;
}

.contact-area.two .contact-place .contact-item ul li {
    list-style-type: none;
    display: block;
    margin-bottom: 5px;
}

.contact-area.two .contact-place .contact-item ul li:last-child {
    margin-bottom: 0;
}

.contact-area.two .contact-place .contact-item ul li span {
    display: inline-block;
    margin-right: 5px;
}

.contact-area.two .contact-place .contact-item ul li a {
    display: inline-block;
    color: var(--green-color);
}

.contact-area.two .contact-place .contact-item ul li a:hover {
    color: var(--black-color);
}

.contact-area.two .contact-place .contact-item span {
    display: block;
}

/*----- End Contact -----*/
/*----- Map -----*/
.map-area #map {
    display: block;
    width: 100%;
    border: 0;
    height: 600px;
}

/*----- End Map -----*/
/*----- Gallery -----*/
.gallery-area .gallery-item {
    margin-bottom: 30px;
    position: relative;
}

.gallery-area .gallery-item:hover:before {
    opacity: .60;
}

.gallery-area .gallery-item:hover i {
    left: 50%;
    opacity: 1;
}

.gallery-area .gallery-item:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.gallery-area .gallery-item img {
    width: 100%;
}

.gallery-area .gallery-item i {
    position: absolute;
    top: 50%;
    left: 48%;
    color: var(--white-color);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    font-size: 40px;
    opacity: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

/*----- End Gallery -----*/
/*----- Quote -----*/
.quote-area .quote-content {
    margin-bottom: 30px;
    text-align: left;
}

.quote-area .quote-content .section-title {
    margin-bottom: 15px;
    text-align: left;
}

.quote-area .quote-content span {
    margin-bottom: 30px;
    display: block;
}

.quote-area .quote-content ul {
    margin: 0;
    padding: 0;
}

.quote-area .quote-content ul li {
    list-style-type: none;
    display: block;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 15px;
}

.quote-area .quote-content ul li:last-child {
    margin-bottom: 0;
}

.quote-area .quote-content ul li a {
    display: inline-block;
    font-weight: 400;
    color: var(--black-color);
    margin-left: 3px;
}

.quote-area .quote-content ul li a:hover {
    color: var(--green-color);
}

.quote-area .quote-content ul li span {
    display: inline-block;
    color: var(--black-color);
    font-weight: 400;
    margin-left: 3px;
    margin-bottom: 0;
}

.quote-area .quote-form {
    margin-bottom: 30px;
}

.quote-area .quote-form form .form-group {
    margin-bottom: 30px;
}

.quote-area .quote-form form .form-group .form-control {
    height: 50px;
    border-radius: 0;
    border: 0;
    background-color: #f5f5f5;
    font-size: 15px;
    padding-left: 20px;
}

.quote-area .quote-form form .form-group .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
}

.quote-area .quote-form form .form-group .nice-select {
    width: 100%;
    border: 0;
    background-color: #f5f5f5;
    height: 50px;
    border-radius: 0;
    line-height: 50px;
    display: block;
    font-size: 15px;
    margin-bottom: 30px;
}

.quote-area .quote-form form .form-group .nice-select .list {
    width: 100%;
    display: block;
}

.quote-area .quote-form form .cmn-btn {
    width: 100%;
    display: block;
    border-radius: 0;
    font-size: 15px;
    border: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

/*----- End Quote -----*/
/*----- Testimonial -----*/
.client-area.three {
    background-image: unset;
}

.client-area.three:before {
    display: none;
}

.client-area.three:after {
    display: none;
}

/*----- End Testimonial -----*/
/*----- FAQ -----*/
.faq-area .work-left {
    max-width: 875px;
    margin-left: auto;
    margin-right: auto;
    background-color: #f6f6f6;
    padding: 42px 30px 50px;
    margin-bottom: 0;
}

.faq-area .work-left .faq-find {
    margin-top: 30px;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.faq-area .work-left .faq-find h3 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 26px;
}

.faq-area .work-left .faq-find p {
    margin-bottom: 20px;
}

/*----- End FAQ -----*/
/*----- Error -----*/
.error-area {
    padding-top: 240px;
    padding-bottom: 200px;
}

.error-area .error-item {
    text-align: center;
}

.error-area .error-item h1 {
    font-weight: 900;
    font-size: 160px;
    margin-bottom: 5px;
}

.error-area .error-item span {
    display: block;
    font-weight: 700;
    font-size: 30px;
    color: var(--black-color);
    margin-bottom: 10px;
}

.error-area .error-item p {
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/*----- End Error -----*/
/*----- Coming Soon -----*/
.coming-soon-area {
    height: 100vh;
    text-align: center;
}

.coming-soon-area .soon-item h1 {
    font-weight: 900;
    font-size: 100px;
    margin-bottom: 15px;
}

.coming-soon-area .soon-item span {
    display: block;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 30px;
}

.coming-soon-area .soon-item .coming-inner {
    background-color: var(--black-color);
    padding-top: 20px;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.coming-soon-area .soon-item .coming-inner h3 {
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 0;
    color: var(--white-color);
}

.coming-soon-area .soon-item .coming-inner p {
    margin-bottom: 0;
    color: var(--white-color);
}

/*----- End Coming Soon -----*/
/*----- Rules -----*/
.rules-area .rules-content {
    margin-bottom: 30px;
}

.rules-area .rules-img {
    margin-bottom: 30px;
}

.rules-area .rules-img img {
    width: 100%;
}

.rules-area h3 {
    font-weight: 500;
    font-size: 26px;
    margin-bottom: 15px;
}

.rules-area p {
    margin-bottom: 20px;
}

.rules-area p:last-child {
    margin-bottom: 0;
}

.rules-area ul {
    margin: 0;
    padding: 0;
}

.rules-area ul li {
    list-style-type: none;
    display: block;
    margin-bottom: 18px;
}

/*----- End Rules -----*/
/*----- Common Form -----*/
.common-form-area .form-item {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.common-form-area .form-item h2 {
    font-weight: 700;
    font-size: 25px;
    bottom: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    border-left: 2px solid var(--green-color);
    border-right: 2px solid var(--green-color);
    background-color: #f5f5f5;
    margin-bottom: 40px;
}

.common-form-area .form-item .form-group {
    margin-bottom: 30px;
}

.common-form-area .form-item .form-group .form-control {
    height: 50px;
    border: 1px solid #f5f5f5;
    border-radius: 0;
    padding-left: 20px;
    font-size: 15px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.common-form-area .form-item .form-group .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--green-color);
}

.common-form-area .form-item .form-group .nice-select {
    width: 100%;
    display: block;
    font-size: 15px;
    height: 50px;
    border: 1px solid #f5f5f5;
    border-radius: 0;
    margin-bottom: 30px;
}

.common-form-area .form-item .form-group .nice-select span {
    line-height: 50px;
}

.common-form-area .form-item .form-group .nice-select .list {
    width: 100%;
    display: block;
}

.common-form-area .form-item .form-group .nice-select .list li {
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.common-form-area .form-item .form-group .nice-select .list li:last-child {
    text-align: left;
}

.common-form-area .form-item .cmn-btn {
    border: 0;
    border-radius: 0;
    width: 100%;
    display: block;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.common-form-area .form-item ul {
    margin: 0;
    padding: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
}

.common-form-area .form-item ul li {
    list-style-type: none;
    display: inline-block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.common-form-area .form-item ul li:last-child {
    text-align: right;
}

.common-form-area .form-item ul li .form-check {
    padding-left: 20px;
    text-align: left;
}

.common-form-area .form-item ul li .form-check .form-check-input {
    margin-top: 2px;
}

.common-form-area .form-item ul li .form-check .form-check-input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.common-form-area .form-item ul li a {
    display: inline-block;
    color: var(--green-color);
}

.common-form-area .form-item ul li a:hover {
    color: var(--black-color);
}

.common-form-area .form-item h4 {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 30px;
}

.common-form-area .form-item h4 a {
    display: inline-block;
    color: var(--green-color);
    font-weight: 700;
}

.common-form-area .form-item h4 a:hover {
    color: var(--black-color);
}

/*----- End Common Form -----*/
/*----- Scroll Bar -----*/
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black-color);
}

::-webkit-scrollbar-thumb {
    background: var(--white-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green-color);
}

/*----- End Scroll Bar -----*/
/*# sourceMappingURL=style.css.map */
.form-group .form-control::placeholder {
    color: #233E9F;
    font-size: 12px;
}

.form-group  .res-weight {
    border: 1px solid #eee;
    background: #fff;
    padding: 10px;
    font-size: 14px !important;
}
.calcinfo {
    display: none;
}

.emptyselect {
    border: 1px solid #ff0000;
}

#visa {
    width: auto;
}
#master {
    width: auto;
}
#mir {
    width: auto;
}
.cc-selector {
    text-align: center;
}

.cc-selector input {
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.drinkcard-cc {
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 100px;
    height: 55px;
    -webkit-transition: all 100ms ease-in;
    -moz-transition: all 100ms ease-in;
    transition: all 100ms ease-in;
    -webkit-filter: brightness(1.8) grayscale(1) opacity(0.7);
    -moz-filter: brightness(1.8) grayscale(1) opacity(0.7);
    filter: brightness(1.8) grayscale(1) opacity(0.7);
}
.visa {
    background-image: url("/newpost/assets/img/visa.jpg");
}
.master {
    background-image: url("/newpost/assets/img/master.jpg");
}
.mir {
    background-image: url("/newpost/assets/img/mir.jpg");
}
#idram {
    width: auto;
}
.idram {
    background-image: url("/newpost/assets/img/idram.jpg");
}
#telcell {
    width: auto;
}
.telcell {
    background-image: url("/newpost/assets/img/telcell.png");
}
.ymoney {
    background-image: url("/newpost/assets/img/ymoney.jpg");
}
#ymoney {
    width: auto;
}
.cc-selector input:active + .drinkcard-cc {
    opacity: 0.9;
}
.drinkcard-cc:hover {
    -webkit-filter: brightness(1.2) grayscale(0.5) opacity(0.9);
    -moz-filter: brightness(1.2) grayscale(0.5) opacity(0.9);
    filter: brightness(1.2) grayscale(0.5) opacity(0.9);
}
#cash {
    width: auto;
    min-height: 15px;
}

.cash {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-size: 20px;
    padding: 10px;
    font-weight: normal;
}
#no_cash {
    width: auto;
    min-height: 15px;
}
.cc-selector input:checked + .drinkcard-cc {
    -webkit-filter: none;
    -moz-filter: none;
    filter: none;
}
.cc-selector input:active + .drinkcard-cc {
    opacity: 0.9;
}

.image-upload > input {
  visibility:hidden;
  width:0;
  height:0
}
.pass-one {
    cursor: pointer;
    width: 190px;
    height: 100px;
}

.pass-two {
    cursor: pointer;
    width: 230px;
    height: 100px;
}
select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #e8e8e8;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    height: 42px;
    line-height: 40px;
    outline: 0;
    padding-left: 18px;
    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: auto;

    display: block;
    width: 100%;
    border-radius: 5px;
    height: 50px;
    font-size: 15px;
    line-height: 50px;
    margin-bottom: 15px;
}

.form-control.is-invalid, .was-validated .form-control:invalid {
    border-color: #dc3545 !important;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.selectinv.is-invalid, .was-validated .selectinv:invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.footer-payment {
    font-size: 18px;
    margin-right: 15px
}
.info-kg-sender {
    font-size: 14px !important;
    height: 30px;
    width: 100%;
    background: #fff;
    padding: 25px 0px;
    text-align: center;
    line-height: 0px;
    border-radius: 5px;
}
.mt-20 {
    margin-top: 20px;
}
.pt-130 {
    padding-top: 130px;
}
.pb-30 {
    padding-bottom: 30px;
}
.pbt-30 {
    padding-bottom: 30px;
    padding-top: 30px;
}
.pt-45 {
    padding-top: 45px;
}
.pt-30 {
    padding-top: 30px;
}
.pt-60 {
    padding-top: 60px;
}

.toast__container {
    z-index: 1000;
    position: absolute;
    display: table-cell;
    vertical-align: middle;
    right: 0;
    top: 160px;
    background-color: #fff;
    height: 70px;
    line-height: 20px;
    border: 1px dashed #F9A01B;
    border-radius: 5px;
}
.toast__cell {
    display: inline-block;
}
.toast {
    display: contents;
    border: 1px solid #eee;
    text-align: left;
    padding: 21px 0;
    background-color: #fff;
    border-radius: 4px;
    max-width: 550px;
    top: 0px;
    position: relative;
    box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.2);
}
.toast--green:before {
    background-color: #F9A01B;
}
.toast:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.toast--green .toast__icon {
    background-color: #F9A01B;
}
.toast__icon {
    position: absolute;
    top: 50%;
    left: 22px;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    padding: 7px;
    border-radius: 50%;
    display: inline-block;
}
.toast__content {
    padding-left: 70px;
    padding-right: 60px;
    padding-top: 20px;
}
.toast__type {
    color: #3e3e3e;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 8px;
}
.toast__close {
    position: absolute;
    right: 22px;
    top: 50%;
    width: 14px;
    cursor: pointer;
    fill: #878787;
    transform: translateY(-50%);
}
.text-algin-center {
    text-align: center !important;
}
.quote-area .quote-form form .form-group .form-control {
    height: 50px;
    border-radius: 15px;
    border: 0;
    background-color: #fff;
    font-size: 15px;
    padding-left: 20px;
    -webkit-box-shadow: 0px 0px 20px 15px #dddddd80;
    box-shadow: 0px 0px 20px 15px #dddddd80;
}
.quote-area .quote-form form .form-group .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    border-radius: 15px;
    -webkit-box-shadow: 0px 0px 20px 0px #f9a426;
    box-shadow: 0px 0px 20px 0px #f9a426;
}

.quote-area .quote-form form .cmn-btn {
    margin-top: 20px;
    border-radius: 5px;
    font-weight: bold;
    -webkit-box-shadow: 0px 0px 20px 15px #dddddd80;
    box-shadow: 0px 0px 30px 15px #dddddd80;
}
.quote-area .quote-form form .cmn-btn:hover {
    margin-top: 20px;
    border-radius: 5px;
    font-weight: bold;
    -webkit-box-shadow: 0px 0px 20px 0px #f9a426;
    box-shadow: 0px 0px 20px 0px #f9a426;
}

#tracks {
    border-radius: 15px;
    padding: 15px;
}

.color-theme {
    color: #F9A426;
}

.table-sm>:not(caption)>*>* {
    padding: 10px 30px;
}

.box-shadow {
    -webkit-box-shadow: 0px 0px 20px 15px #dddddd80;
    box-shadow: 0px 0px 30px 15px #dddddd80;
}

.service-details-area .details-item {
    margin-bottom: 30px;
}

.nav-link-prof {
    display: inline-block !important;
    padding: 7px 3px;
}
.sl {
    font-weight: bold;
    display: inline-block !important;
}
.login-fb-logo {
    background-position: -269px 0 !important;
    width: 28px;
    top: 10px;
}
.login-fb-logo,
.login-gplus-logo {
    height: 29px;
    position: absolute;
    left: 15px;
}
.login-button {
    display: block;
    margin: 0 auto;
    width: 100%;
    /* max-width: 162px; */
    padding-left: 40%;
    position: relative;
    font-size: 13px;
    font-weight: 500;
    color: #696b79;
    height: 50px;
    border: 1px solid #bfc0c6;
    background-color: #fff;
    border-radius: 5px;
    text-align: left;
}
.header-sprite {
    background: url('https://cdn.myntassets.com/myx/images/header@2x-new16.a409d46af2e211afcaa82c1359787a90408024be.png')
        no-repeat 0 0;
    background-size: 336px 48px;
}
.login-gplus-logo {
    background-position: -298px 0 !important;
    width: 23px;
    top: 13px;
}
.social-login {
    top: 13px;
    position: inherit;
    font-size: 16px;
    font-weight: bold;
}
.new-account {
    font-weight: bold;
    color: #000;
    text-decoration-line: underline;
}
.reg {
    color: #F9A01B;
}
.align-center {
    text-align: center;
}
.login-section label, .reg-section label {
    padding: 5px 0px;
    font-size: 18px;
    font-weight: 500;
    margin-top: 16px;
}

.fg-pass {
    float: right;
    top: 23px;
    position: relative;
    color: #666;
    font-size: 16px;
}
.btn-orange {
    background-color: #F9A01B;
    padding: 10px 0px;
    border: 1px solid #eee;
    border-radius: 15px;
    margin-top: 15px;
    color: #fff;
    font-weight: bold;
}
.btn-orange:hover {
    background-color: #F9A04E;
    -webkit-box-shadow: 0px 0px 10px 5px #dddddd80;
    box-shadow: 0px 0px 10px 5px #dddddd80;
}
.reg-section .form-group {
    width: 49%;
    display: inline-block;
}

.profile-main {
    margin: 0 auto;
}
.profile-header {
    width: 100%;
    background-color: #FBA044;
}
.user-detail {
    position: relative;
    width: 80%;
    margin: 0 auto;
    height: 200px;
    background-color: #fff;
    border-bottom: 2px solid #FBA044;
    border-top: 2px solid #FBA044;
    border-radius: 15px;
}
.user-image {
    float: left;
    position: relative;
    width: 23%;
    height: 135px;
    text-align: right;
}
.user-image img {
    height: 100%;
    border-radius: 50%;
    margin-top: 35px;
}
.prof-label {
    position: absolute;
    background: #8c13a0;
    color: #fff;
    padding: 9px 4px;
    border-radius: 50%;
    top: 155px;
    left: 42px;
    font-size: 12px;
}
.user-data {
    float: left;
    width: 46%;
    padding-left: 27px;
    margin-bottom: 20px;
}
.user-data h2 {
    margin-bottom: 0px;
    margin-top: 35px;
    font-size: 20px;
    font-weight: 600;
}
.user-data .post-label {
    font-size: 12px;
    border: 1px solid #c3cecb;
    padding: 0px 4px;
    border-radius: 4px;
    background: #f3f5f5;
    margin-right: 5px;
}
.user-data .post-label:hover {
    background-color: #f8ede7;
    border-color: #f2d4ba;
}
.user-data p {
    font-size: 14px;
    color: #404040;
    margin-bottom: 5px;
}
.social-icons {
    float: left;
    width: 25%;
    text-align: center;
}
.social-icons i {
    text-align: center;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #fff;
    padding: 5px 0px 0px 0px;
    border-radius: 50%;
    font-size: 11px;
    margin-right: 2px;
    height: 20px;
    width: 20px;
}
.social-icons .fa-facebook {
    background-color: #365597;
}
.social-icons .fa-twitter {
    background-color: #01b0f4;
}
.social-icons .fa-linkedin {
    background-color: #0f80bb;
}
.social-icons .fa-google {
    background-color: #d53b1f;
}
.social-icons .fa-instagram {
    background-color: #cf3594;
}
.msg-btn {
    background: #fff;
    padding: 5px 11px;
    color: black;
    text-decoration: none;
    font-size: 13px;
}
.msg-btn i {
    padding: 0;
    color: black;
    margin-right: 7px;
}

/*tab*/
.tab-panel-main {
    width: 100%;
    margin: 0 auto;
}
ul.tabs {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: flex;
    position: absolute;
    top: 207px;
    right: 400px;
}
ul.tabs li {
    color: #222;
    display: inline-block;
    padding: 10px 15px;
    border-right: 1px solid #e2f3fb;
    border-top: 2px solid #e2f3fb;
    cursor: pointer;
    background: #fafbfb;
}
ul.tabs li:last-child {
    border-right: 2px solid #e2f3fb;
}
ul.tabs li:first-child {
    border-left: 2px solid #e2f3fb;
}
ul.tabs li.current {
    background: #10a3ff;
    color: #fff;
    font-weight: 600;
}
.tab-content {
    display: none;
    padding: 15px 5px;
}
.tab-content.current {
    display: inherit;
}
.skill-box {
    display: inline-block;
    width: 100%;
    text-align: center;
    border: 1px solid #ededed;
    border-radius: 3px;
    padding: 11px 15px;
    margin-bottom: 20px;
}
.skill-box ul li strong {
    font-size: 12px;
}
.skill-box ul {
    display: inline-block;
    text-align: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
.skill-box ul li {
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    margin-right: 4px;
    padding: 4px 10px;
    border-radius: 2px;
    border: 1px solid #eee;
}
.skill-box ul li:hover {
    background-color: #FB9B3A;
    color: #fff !important;
}

.skill-box ul li i {
    margin-left: 4px;
    margin-right: 1px;
}
.bio-box {
    border: 1px solid #ededed;
    border-radius: 4px;
}
.detail-box {
    border: 1px solid #ededed;
    border-radius: 4px;
}
.bio-box .heading {
    padding: 10px 0px 10px 10px;
}
.bio-box .heading p {
    margin: 0px;
    font-weight: 600;
    font-size: 13px;
}
.bio-box .heading label {
    float: right;
    font-size: 9px;
    font-weight: normal;
    border: 1px solid #ededed;
    border-right: none;
    padding: 2px 1px 2px 5px;
}

.detail-box p {
    font-weight: 600;
    margin: 0px;
}
.detail-box .ul-first {
    padding: 0px;
    list-style: none;
    float: left;
}
.detail-box .ul-second {
    float: left;
    list-style: none;
    color: #767676;
}
#Basic-detail {
    background: #fff;
    padding-left: 0px;
    padding-right: 0px;
}
.skill-box ul .actiive {
    background: #FB9B3A;
    color: #fff;
}
.skill-box a {
    color: #000;
}
.btn-red {
    color: #fff !important;
    background: #F9A01B;
    padding: 5px;
    border: 1px solid #fff;
    margin-bottom: 30px;
    margin-top: 20px;
}
.form-horizontal .form-group {
    margin-bottom: 1rem;
}
.testimonial-page-section {
    position: relative;
}

.testimonial-page-section .testimonial-block-one .inner-box {
    margin-bottom: 40px;
}
.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}
.testimonial-block-one .inner-box {
    position: relative;
    display: block;
    background: #fff;
    padding: 30px 50px 30px 70px;
    box-shadow: 0 5px 30px rgb(0 0 0 / 30%);
}
.testimonial-block-one .inner-box i {
    position: relative;
    right: 0;
    top: 0;
    font-size: 40px;
    display: inline-block;
    color: #fff;
    background-color: #F9A01B;
    width: 65px;
    height: 65px;
    line-height: 65px;
    border-radius: 50%;
    text-align: center;
    margin-bottom: 30px;
}
.btn-secondary {
    background: #fff;
    color: #F9A01B;
    border: none;
    font-size: 16px;
    font-weight: bold;
}
.my-logout i {
    position: revert !important;
}
.my-prof li:nth-child(2) {
    border-left: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}
.btn-check:focus+.btn-secondary, .btn-secondary:focus {
    color: #000;
    background-color: #fff;
    border-color: #F9A01B;
    box-shadow: 0 0 0 0.25rem rgb(249 160 27 / 50%);
}
.btn-secondary:hover {
    color: #000;
    background-color: #fff;
    border-color: #F9A01B;
}
.reclam a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    -webkit-box-shadow: 0px 0px 20px 20px #dddddd80;
    box-shadow: 0px 0px 20px 20px #dddddd80;
}
.reclam a {
    display: block;
    height: 100%;
}
.reclam-item {
    border-top: 10px solid orange;
    border-bottom: 10px solid orange;
    margin-bottom: 30px;
}
.reclam-item .blog-inner {
    border-left: 1px solid #fff !important;
    border-bottom: 1px solid #fff !important;
    border-right: 1px solid #fff !important;
    padding: 30px 30px 30px;
}
.phone-wmain {
    margin-left: 15px;
    top: -10px;
    position: relative;
}
.phone-wmain a {
    margin-left: 0 !important;
    margin-right: 0  !important;
}
.phone-wmain a .wiber {
    width: 50px;
}
.phone-wmain a .whats{
    width: 39px
}
.work-area .work-right .form-group label {
    margin-bottom: 5px;
    font-size: 14px !important;
    color: var(--grey-color);
}

.cupon {
    display: inline-block;
    float: right;
    margin-right: 30px;
}
.cupon .code-input {
    height: 50px;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    background-color: var(--white-color);
    padding-left: 15px;
    font-size: 15px;
}
