

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

a {
    margin: 0;
    padding: 0;
}

ul,
ol,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    display: inline-block;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    color: var(--colorBlack);
}

p,
span {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: #666a6c;
}

body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: "Manrope", sans-serif;;
}

img {
    /* width: 100% ;
    height: 100% ;
    object-fit: cover ; */
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 20px;
    outline: none;
    resize: none;
    border: 1px solid #E4E7E9;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 300;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.form-check-input:focus {
    box-shadow: none;
}

input::placeholder,
textarea::placeholder {
    color: #a6a6ac;
}

button {
    border: none;
}

:root {
    --colorPrimary: #FAA392;
    --paraColor: #3B3E3F;
    --colorBlack: #002633;
    --colorWhite: #ffffff;
    --boxShadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    --bodyFont: 'Manrope', sans-serif;
    --bannerFont: 'Libre Baskerville', serif;
}

.common_btn {
    padding: 11px 55px 11px 30px;
    background: #4267b2;
    color: var(--colorWhite) !important;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    position: relative;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.common_btn::after {
    position: absolute;
    content: "";
    background: url(../images/arrow_icon.png);
    width: 25px;
    height: 21px;
    top: 50%;
    right: 21px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.common_btn:hover,
.common_btn:focus {
    animation: pulse 1s;
    box-shadow: 0 0 0 1em transparent;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #faa392;
    }
}

.read_btn {
    background: #4267b2;
    padding: 8px 30px;
    border-radius: 30px;
    color: var(--colorWhite) !important;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.read_btn::after {
    position: absolute;
    content: "";
    width: 0%;
    height: 100%;
    background: #0e518c;
    border-radius: 30px;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.read_btn:hover::after {
    width: 100%;
}



.section_heading {
    text-align: center;
}

.section_heading h5 {
    font-weight: 600;
    font-size: 20px;
    color: #4267b2;
    text-transform: capitalize;
    position: relative;
    padding: 0 20px;
    margin-bottom: 7px;
    text-align: center;
    display: inline-block;
}

.section_heading h5::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 4px;
    background: #4267b2;
    border-radius: 5px;
    top: 10px;
    left: -20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.section_heading h5::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 4px;
    background: #4267b2;
    border-radius: 5px;
    top: 10px;
    right: -20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.section_heading h3 {
    font-weight: 700;
    font-size: 44px;
    text-transform: capitalize;
    text-align: center;
}

.heading_left {
    text-align: left;
}

.heading_left h3,
.heading_left ht {
    text-align: left;
}

.heading_left h5 {
    padding-left: 0;
}

.heading_left h5::after {
    display: none;
}

.section_heading_2 {
    text-align: center;
}

.heading_left_2 h5,
.heading_left_2 h3 {
    text-align: left;
}

.section_heading_2 h5 {
    font-weight: 600;
    font-size: 20px;
    color: #4267b2;
    text-transform: capitalize;
    position: relative;
    margin-bottom: 15px;
}

.section_heading_2 h3 {
    font-weight: 800;
    font-size: 35px;
    text-transform: uppercase;
}

/* for mobile menu start*/
.navbar-toggler .menu_close {
    display: none;
}

.navbar-toggler.show_close .menu_icom {
    display: none;
}

.navbar-toggler.show_close .menu_close {
    display: block;
}

/* for mobile menu end*/





/* pagination start */
.pagination ul {
    justify-content: center;
}

.pagination ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0;
    color: #4267b2;
    border: 1px solid #4267b2;
    border-radius: 3px !important;
    margin-right: 10px;
    font-size: 16px;
    font-weight: 600;
    -webkit-border-radius: 3px !important;
    -moz-border-radius: 3px !important;
    -ms-border-radius: 3px !important;
    -o-border-radius: 3px !important;
}

.pagination ul li a:hover,
.pagination ul li.active a {
    background: #4267b2;
    color: var(--colorWhite);
    border-color: #4267b2;
}

.pagination ul li a:focus {
    color: var(--colorWhite);
    background-color: #4267b2;
    box-shadow: 0px 0px 0px 2px #e05e44;
}

/* pagination end */
/*================================
    GLOBAL CSS END
================================*/


/*================================
    HOME PAGE START
================================*/
/* TOPBAR START */
.topbar {
    background: var(--colorBlack);
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

.topbar_left li a,
.topbar_left li p {
    color: #F8FAFA;
    margin-right: 30px;
    line-height: 50px;
    font-size: 14px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.topbar_left li:last-child a,
.topbar_left li:last-child p {
    margin-right: 0;
}

.topbar_left li a i,
.topbar_left li p i {
    width: 30px;
    height: 30px;
    line-height: 32px;
    background: #F8FAFA;
    color: #4267b2;
    text-align: center;
    border-radius: 50%;
    margin-right: 5px;
    font-size: 14px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.topbar_left li a:hover {
    color: #4267b2;
}

.topbar_right {
    justify-content: end;
}

.topbar_right li {
    line-height: 50px;
}

.topbar_right li a {
    width: 30px;
    height: 30px;
    line-height: 31px;
    background: #F8FAFA;
    color: #4267b2;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 14px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.topbar_right li:last-child a {
    margin-right: 0;
}

.topbar_right li a:hover {
    color: #F8FAFA;
    background: #4267b2;
}

/* TOPBAR END */

/* MENU START */
.main_menu {
    width: 100%;
    height: 90px;
    background: #4267b2;
    position: fixed;
    top: 0px;
    left: 0;
    border-bottom: 1px solid #eee;
    z-index: 999;
    transition: all linear .2s;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
}

.main_menu .navbar-brand {
    margin: 0;
    padding: 0;
    max-width: 325px;
}

.main_menu .navbar-nav .nav-item {
    position: relative;
}

.main_menu .navbar-nav .nav-item .nav-link {
    text-transform: capitalize;
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    transition: all linear .3s;
    padding: 0px 15px;
    margin: 0;
    line-height: 90px;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.main_menu .navbar-nav .nav-item .nav-link i {
    margin-left: 5px;
}

.main_menu .navbar-nav .nav-item:hover .nav-link,
.main_menu .navbar-nav .nav-item .nav-link.active {
    color: #4267b2;
}

.main_menu .droap_menu {
    position: absolute;
    width: 250px;
    max-height: 500px;
    top: 120%;
    left: 0;
    background: var(--colorWhite);
    box-shadow: var(--boxShadow);
    overflow: hidden;
    overflow-y: auto;
    line-height: 50px;
    opacity: 0;
    visibility: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all linear .2s;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
    z-index: 9;
}

.droap_menu::-webkit-scrollbar {
    scrollbar-width: thin !important;
    background: #ddd;
    width: 6px;
}

.droap_menu::-webkit-scrollbar-thumb {
    background: #4267b2;
}

.droap_menu li a {
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 500;
    color: var(--colorBlack);
    display: block;
    padding: 0;
    margin: 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid #feeaea;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.droap_menu li:last-child a {
    border-bottom: 0;
}

.droap_menu li a::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 40px;
    background: #4267b2;
    top: 50%;
    left: -6px;
    transform: translateY(-50%);
    opacity: 0;
    border-radius: 50px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.droap_menu li a:hover,
.droap_menu li a.active {
    color: var(--colorBlack);
    background: #f7eded;
    border-color: var(--colorWhite);
}

.main_menu .droap_menu li a:hover::after,
.main_menu .droap_menu li a.active::after {
    opacity: 1;
}

.main_menu .navbar-nav .nav-item:hover .droap_menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.main_menu .menu_right li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--colorWhite);
    margin-left: 10px;
    color: #fff;
    border: 1px solid #4267b2;
    background-color: #4267b2;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.main_menu .menu_right li:first-child a {
    margin-left: 0;
}

.main_menu .menu_right li .reservation {
    width: auto;
    padding: 0px 15px;
}

.main_menu .menu_right li a:hover,
.main_menu .menu_right li a.active {
    background: #4267b2;
    color: var(--colorWhite);
    border: 1px solid #4267b2;
}

.menu_fix {
    top: 0 !important;
}



/

/* MENU END */





/* ABOUT START*/
.about_text {
    padding-right: 0px;
}

.about_text_center p {
    color: var(--colorBlack);
    margin-bottom: 15px;
}

.about_text_center_user_img {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.about_text_center_user_text h3 {
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    color: #4267b2;
    margin-bottom: 10px;
}

.about_text_center_user_text h3 span {
    font-size: 13px;
    color: var(--colorBlack);
}

.about_text_center_user_call span {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #4267b2;
    color: var(--colorWhite);
    border-radius: 5px;
    margin-right: 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.about_text_center_user_call p {
    text-transform: capitalize;
    margin: 0;
}

.about_text_center_user_call p a {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--colorBlack);
    margin-top: 3px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.about_text_center_user_call p a:hover {
    color: #4267b2;
}

.about_text .description {
    margin: 25px 0px;
}

.about_img {
    position: relative;
    margin: 0px 30px;
    /* width: 550px; */
    height: 500px;
    float: right;
}

.about_img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #4267b2;
    top: 20px;
    right: -20px;
    z-index: -1;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.about_img img {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    width: 100%;
    -o-border-radius: 5px;
}
.single_counter{
    margin-bottom: 20px;
}
.step{
    margin-bottom: 20px;
}

.about_img .large_img_2,
.about_img .large_img_3 {
    width: 200px !important;
    height: 200px !important;
    position: absolute;
    bottom: -90px;
    left: 20px;
}

.about_img .large_img_3 {
    left: auto;
    right: 20px;
}

.about_img .venobox,
.why_choose_img .venobox {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 20px;
    background: #4267b2;
    color: var(--colorWhite);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -40px;
    transition: all linear .3s;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    z-index: 1;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.about_img .venobox::after,
.why_choose_img .venobox::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 100px;
    border: 5px solid #4267b2;
    top: -10px;
    left: -10px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.about_img .venobox:hover,
.why_choose_img .venobox:hover {
    background: var(--colorBlack);
}

/* ABOUT END*/











/* COUNTER START */
.counter_section {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background: #f0f0f0;
}


.single_counter_center::after,
.single_counter_center::before {
    position: absolute;
    content: "";
    width: 25px;
    height: 25px;
    background: #4267b2;
    border-radius: 50%;
    top: -17px;
    left: 43%;
    transform: translateX(-50%);
    z-index: 2;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.single_counter_center::before {
    top: -17px;
    left: 55%;
}

.single_counter_center h2 {
    width: 150px;
    height: 150px;
    text-align: center;
    line-height: 150px;
    margin: auto;
    background: #4267b2;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.single_counter_center h2 span {
    display: inline-block;
    font-size: 44px;
    font-weight: 700;
    color: var(--colorWhite);
    position: relative;
    padding-right: 27px;
}

.single_counter_center h2 span::after {
    position: absolute;
    content: "+";
    top: 0;
    right: -3px;
    font-size: 50px;
    font-weight: 900;
    color: var(--colorWhite);
}

.single_counter p {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 15px;
}

/* COUNTER END */






/* FOOTER START */
.footer {
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.footer_subscribe {
    background: #4267b2;
    padding: 30px 50px;
    border-radius: 100px;
    position: relative;
    top: -60px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

.footer_subscribe_text h4 {
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--colorWhite);
    margin-bottom: 10px;
}

.footer_subscribe_text p {
    color: var(--colorWhite);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.footer_subscribe_form {
    height: 100%;
    display: flex;
    align-items: center;
}

.footer_subscribe_form form {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.footer_subscribe_form input {
    padding: 18px 20px;
}

.footer_subscribe_form button {
    position: absolute;
    top: 50%;
    right: 7px;
    transform: translateY(-50%);
    padding: 12px 30px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.footer_logo_area .footer_logo {
    display: block;
    max-width: 200px;
}

.footer_logo_area p {
    color: var(--colorWhite);
    margin: 0px 0px 30px 0px;
}

.footer_logo_area ul li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: var(--colorWhite);
    color: #4267b2;
    border-radius: 50%;
    font-size: 16px;
    margin-right: 10px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.footer_logo_area ul li a:hover {
    color: var(--colorWhite);
    background: #4267b2;
}

.footer_link h4 {
    font-weight: 600;
    font-size: 24px;
    color: var(--colorWhite);
    text-transform: capitalize;
    position: relative;
    margin-bottom: 45px;
}

.footer_link h4::after {
    position: absolute;
    content: "";
    background: url(../images/footer_shapes.png);
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
    width: 70px;
    height: 3px;
    z-index: 1;
    bottom: -10px;
    left: 1px;
}

.footer_link ul li a {
    display: block;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--colorWhite);
    margin-top: 15px;
    position: relative;
    padding-left: 15px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.footer_link ul li a::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    background: var(--colorWhite);
    top: 10px;
    left: 0;
}

.footer_link p {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--colorWhite);
    margin-top: 35px;
    position: relative;
    padding-left: 50px;
    padding-top: 10px;
}

.footer_link p i {
    width: 35px;
    height: 35px;
    line-height: 37px;
    text-align: center;
    background: var(--colorWhite);
    color: #cd9a38;
    border-radius: 50%;
    font-size: 16px;
    transition: all linear .3s;
    position: absolute;
    left: 0;
    top: 5px;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.footer_link ul li a:hover {
    color: #4267b2;
}

.footer hr {
    border: 1px solid var(--colorWhite);
    margin: 0;
}

.footer_copyright {
    padding: 20px 0px;
}

.footer_copyright p {
    text-align: center;
    color: var(--colorWhite);
}

.footer_copyright p a {
    color: var(--colorWhite);
    font-weight: 600;
    text-transform: capitalize;
    font-size: 16px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.footer_copyright p a:hover {
    color: #4267b2;
}

/* FOOTER END */

/* SCROLL BUTTON START */
.scroll_btn {
    width: 35px;
    height: 70px;
    border-radius: 25px;
    position: fixed;
    bottom: 30px;
    right: 10px;
    z-index: 111;
    cursor: pointer;
    text-align: center;
    line-height: 70px;
    background: #4267b2;
    border: 3px solid var(--colorWhite);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.scroll_btn span {
    font-size: 16px;
    color: var(--colorWhite);
    animation: scroll_amini linear 2s infinite alternate;
    -webkit-animation: scroll_amini linear 2s infinite alternate;
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.scroll_btn:hover {
    background: var(--colorBlack);
}

@keyframes scroll_amini {
    from {
        bottom: -17px;
    }

    to {
        bottom: 12px;
    }
}

/* SCROLL BUTTON END */
/* ==============================
    HOME PAGE END
============================== */






.contact_form h2 {
    font-size: 28px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.contact_form input,
.contact_form select,
.contact_form textarea {
    background: #f9c057;
    border-radius: 5px;
    border: none;
    margin-top: 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.contact_form input::placeholder,
.contact_form textarea::placeholder {
    color: var(--colorBlack);
}

.contact_form button {
    width: 100%;
    padding: 15px 30px;
    text-align: center;
    margin-top: 15px;
}

.contact_form button::after,
.contact_form button::before {
    display: none;
}

/*================================
    CONTACT US PAGE END
================================*/








.bg-why
{
 background-color:#e6e6e1;
 padding-top: 100px;
 padding-bottom: 25px;
}

.bg-service
{
 background-color:#000!important;
 padding-top: 30px;
 padding-bottom: 25px;
}
/* 
.logo-white
{
    width: 80%!important;
} */
.whatsapp1, .call{
    position: fixed;
}
.whatsapp1 i {
    position: fixed;
    bottom: 120px;
    left: 30px;
    background: green;
    color: #fff;
    font-size: 30px;
    padding: 14px 14px;
    border-radius: 50%;
    border: 3px solid #fff;
    z-index: 99;
}
.call i {
    position: fixed;
    bottom: 40px;
    left: 30px;
    background: #4267b2;
    color: #fff;
    font-size: 28px;
    padding: 14px 14px;
    border-radius: 50%;
    border: 3px solid #fff;
    z-index: 99;
}
.landing-banner{
    background-image: url(../images/banner-1.jpg);
    background-position: center center;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding:200px 0 76px;
    position: relative;
    z-index: 0
}
.landing-banner.banner-1{
    background-image: url(../images/banner-2.jpg);
}
.landing-banner:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .7;
    top: 0;
    left: 0;
    z-index: -1;
}
.banner-text h1{
    color: #fff;
    font-weight: 900;
    margin-bottom: 10px;
}
.banner-text p{
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.banner-text h2 {
    color: #fff;
    font-weight: 900;
    margin-bottom: 10px;
}
.banner-text ul li{
    color: #fff;
    margin-bottom: 5px;
}
.banner-text ul li i{
    margin-right: 5px;
}
.banner-text .buttons{
    gap: 20px;
    margin-top: 20px;
}
.banner-text .buttons .whatsapp{
    background: #008535;
}
.banner-form{
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    margin: 0 30px;
}
.banner-form .contact_form h2{
    font-size: 28px;
}
.landing_why_choose{
    padding: 60px 0;
}
.why-box{
    background: #ffe5e5;
    text-align: center;
    padding: 20px 0;
    border-radius: 10px;
    margin-bottom: 20px;
}
.why-box h3{
    font-size: 22px;
    font-weight: 900;
}
.landing-service .services_img{
    height: 215px;
}
.gallery_item img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.cta-banner {
    background-image: url(../images/cta.jpg);
    background-position: center center;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    padding: 120px 0;
    position: relative;
    z-index: 0;
    /* margin-top: 50px; */
}
.cta-banner.cta-1 {
    background-image: url(../images/cta-1.jpg);
}
.cta-banner:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .6;
    top: 0;
    left: 0;
    z-index: -1;
}
.landing-testimonial{
    padding: 60px 0;
}
.card-header button{
    text-decoration: none;
    color: #121212;
    font-weight: 700;
}
.card-header button:hover{
    color: #121212;
}
.card-header button:focus{
    color: #121212;
    border: none;
    box-shadow: none;
}
.accordion .card{
    margin-bottom: 10px;
}
.contact-details .footer_link h4{
    color: #0a0a0a;
}
.contact-details .footer_link p i{
    background: #4267b2;
    color: #fff;
}
.contact-details .footer_link p a, .contact-details .footer_link p{
    color: #0a0a0a;
}
.contact-details .footer_link h5{
    margin-bottom: 20px;
    font-weight: 700;
}
.detail-1{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.detail-1 .info p{
    margin-top: 0;
    padding: 0;
    font-weight: 400;
}
.detail-1 .info a{
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 800;
}
.detail-1 .icon i{
    background: #4267b2;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
}
.privacy{
    padding: 60px 0;
}
.privacy h1{
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 12px;
}
.privacy h2{
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 12px;
    margin-top: 20px;
}
.privacy ul{
    margin-top: 20px;
    padding-left: 25px;
}
.privacy ul li{
    list-style: circle;
    margin-bottom: 5px;
}
.landing-service .services_text ul li .common_btn{
    padding: 11px 47px 11px 14px;
}
.landing-service .services_text ul li .common_btn.whatsapp{
    background: #008535;
}
.landing-service .services_text ul{
    margin-bottom: 0;
}
.landing-counter .single_counter_center h2{
    color: #fff;
    font-size: 32px;
    font-weight: 700;
}
.landing-service{
    padding-bottom: 60px;
    background: #e3e3e3;
    padding-top: 60px;
}
.landing_why_choose{
    background: #e3e3e3;
}
.landing-cta{
    padding: 60px 0;
}
.step h3{
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
}
.step p{
    text-align: center;
}
.step{
    text-align: center;
}
.why-list{
    display: flex;
    gap: 20px;
}
.why-list li{
    background: #fff;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    padding: 5px;
}
.why-list li img{
    width: 100%;
    height: 200px;
}
.why-list li p{
    margin-top: 10px;
    font-weight: 600;
    margin-bottom: 10px;
}
.flag-list{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.flag-list li{
    background: #e5e5e5;
    padding: 5px;
    border-radius: 5px;
    border: 1px dotted #7b7b7b;
}
.flag-list li img{
    width: 100%;
}
.flag-list li p{
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin-top: 5px;
    color: #000000;
}
.faq-sec{
    background: #e5e5e5;
    padding: 60px 0;
}
.text-box p{
    font-size: 16px;
    color: #1e1e1e;
    margin-bottom: 10px;
}
.text-box h4{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 30px;
}
.text-box ul{
    padding-left: 20px;
}
.text-box ul li{
    list-style: circle;
}
.contact{
    padding: 60px 0;
}
.section_heading h2{
    margin-bottom: 20px;
}
.about{
    padding: 60px 0;
}
@media screen and (max-width: 767px){
    .breadcrumb_area{
        margin-top: 100px;
    }
    .banner-form{
        margin: 0;
        margin-top: 30px;
    }
    .landing-service .services_img {
    height: 340px;
        margin-bottom: 0;
    }
    .landing-service .services_item{
        display: block;
    }
    .card-header button{
        text-align: left;
    }
    .why-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .flag-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}