/*************GLOBAL*****************/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Poppins', sans-serif;
}

body {
    color: #666;
}

#page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

:root {
    --colorPrimary: #f5821f;
    --colorPrimaryHover: #df7111;
    --colorWhite: #ffffff;
    --colorBlack: #000000;
    --colorSecondary: #2b3e7e;
    --colorOffBlack: #232323;
    --colorYellow: #faba34;
    --colorDark: #222222;
    --colorTheme: #4089f4;
    --bgLight: #f5f5f5;
    --bgWhite: #ffffff;
    --bgTheme: #4089f4;
    --bgThemeHover: #246fe0;
    --bgDark: #222222;
    --bgDullDark: #343434;
    --bgBanner: #eff5ff;
    --bgPrimaryLight: #ffe8d0;
    --bgPrimary: #f5821f;
    --bgPrimaryHover: #df7111;
    --bgSecondary: #68a4fd;
}

.colorPrimary {
    color: var(--colorPrimary);
}

.colorSecondary {
    color: var(--colorSecondary);
}

.colorWhite {
    color: var(--colorWhite);
}

a {
    text-decoration: none;
    color: currentColor;
    transition: .3s !important;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.font-semibold {
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
}

.bgLight {
    background-color: var(--bgLight);
}

.py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.btn-inner>a,
.btn-inner>button {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-primaryCustom {
    min-width: 160px;
    background: var(--bgTheme);
    font-weight: 600;
    padding: 15px;
    box-shadow: 0px 0px 6px 3px rgb(64 137 244 / 40%);
    display: inline-block;
    color: var(--colorWhite);
    border-color: var(--colorTheme);
}

.btn-primaryCustom:hover {
    color: var(--colorWhite);
    background-color: var(--bgThemeHover);
}

.btn-primaryCustom-inner>a,
.btn-primaryCustom-inner>button {
    min-width: 160px;
    background: var(--bgTheme);
    font-weight: 600;
    padding: 15px;
    box-shadow: 0px 0px 6px 3px rgb(64 137 244 / 40%);
    display: inline-block;
    color: var(--colorWhite);
    border-color: var(--colorTheme);
}

.btn-primaryCustom-inner>a:hover,
.btn-primaryCustom-inner>button:hover {
    color: var(--colorWhite);
    background-color: var(--bgThemeHover);
}

.btn-secondaryCustom {
    min-width: 160px;
    background: var(--bgPrimary);
    font-weight: 600;
    padding: 15px;
    display: inline-block;
    color: var(--colorWhite);
    border-color: var(--colorPrimary);
}

.btn-secondaryCustom:hover {
    color: var(--colorWhite);
    background-color: var(--bgPrimaryHover);
    border-color: var(--colorPrimaryHover)
}

.bgDark {
    background-color: var(--bgDark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--colorBlack);
}

section {
    position: relative;
}

.section_gap {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section_heading {
    font-size: 42px;
    line-height: 56px;
    margin-bottom: 30px;
    font-weight: 700;
}

.sub_heading_text {
    font-size: 18px;
    line-height: normal;
    margin-bottom: 0;
}

.heading_circle {
    position: relative;
}

.heading_circle::before {
    content: '';
    height: 100px;
    width: 100px;
    background: url("../images/heading_circle.png") no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 20px;
    top: -7px;
}

.bgSecondary {
    background-color: var(--bgSecondary);
}

.addLeftWave {
    background-image: url("../images/waves-left.png");
    background-repeat: no-repeat;
    background-size: auto auto;
    background-position: left bottom;
}

.addRightWave {
    background-image: url("../images/waves-right.png");
    background-repeat: no-repeat;
    background-size: auto auto;
    background-position: right top;
}

.addBothWave {
    background-image: url("../images/waves-left.png"), url("../images/waves-right.png");
    background-repeat: no-repeat, no-repeat;
    background-size: auto auto, auto auto;
    background-position: left calc(100% + 80px), right -70px;
}

.h3_style {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.white_box {
    background: var(--bgWhite);
    border-radius: 10px;
    padding: 30px;
}

.heading_circle-inner>.elementor-widget-container {
    position: relative;
    display: table;
    margin-left: auto !important;
    margin-right: auto !important;
}

.heading_circle-inner>.elementor-widget-container::before {
    content: '';
    height: 100px;
    width: 100px;
    background: url("../images/heading_circle.png") no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 20px;
    top: -7px;
    display: inline-block;
}

.heading_circle-inner>.elementor-widget-container>* {
    position: relative;
}

.single_line_heading>.elementor-widget-container::before {
    left: -40px;
    top: -20px;
}

/*************GLOBAL ENDS************/

/***********ELEMENTOR OVERWRITE***********/

body .elementor-widget:not(:last-child) {
    margin-bottom: 0;
}

body .elementor-heading-title {
    line-height: 1.2;
}

body .elementor-widget-button .elementor-button {
    min-width: 160px;
}

body .elementor-section.elementor-section-boxed>.elementor-container {
    max-width: 100%;
    padding: 0 12px;
}

/***********ELEMENTOR OVERWRITE ENDS******/

/***********HEADER******************/

.sticky-header {
    position: fixed;
    z-index: 99;
    width: 100%;
    background: var(--bgWhite);
}

.top_header {
    font-size: 14px;
    padding: 10px 0px;
}

.top_header li+li {
    border-left: solid 2px #a6a6a6;
    padding-left: 10px;
    margin-left: 10px;
}

.bottom_header {
    border-bottom: solid 1px #dddddd;
}

.bottom_header {
    border-bottom: solid 1px #dddddd;
}

.bottom_header .navbar-expand-lg .navbar-nav .menu-item+.menu-item {
    margin-left: 35px;
}

.bottom_header .navbar-expand-lg .navbar-nav .menu-item>a {
    padding: 10px 1px;
    color: var(--colorOffBlack);
    border-bottom: solid 2px transparent;
    text-transform: uppercase;
}

.bottom_header .navbar-expand-lg .navbar-nav .menu-item.current-menu-item>a,
.bottom_header .navbar-expand-lg .navbar-nav .menu-item>a:hover {
    border-color: var(--colorTheme);
}

.bottom_header .navbar-expand-lg .navbar-nav .btn-primaryCustom-inner>a {
    padding: 15px;
    color: var(--colorWhite);
}

header.entry-header,
body:not(.home) .bottom_header .navbar-brand {
    display: none;
}

/***********HEADER ENDS*************/

/**********Footer*******************/

footer {
    margin-top: auto;
    color: var(--colorWhite)
}

.footer_main {
    padding: 40px 0px;
    background: var(--bgDark);
}

.footer .widget-area .widget {
    width: 33.33333333%;
}

.footer .widget-area .widget .widget-title {
    font-size: 18px;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: solid 2px;
    display: table;
    text-transform: uppercase;
    color: var(--colorWhite);
    line-height: normal;
    font-weight: 500;
}

.footer .widget-area .widget li {
    font-size: 14px;
}

.footer .widget-area .widget a:hover,
.footer_bottom_links li a:hover {
    color: var(--colorYellow);
}

.footer-contact-number ul li {
    display: flex;
    flex-wrap: wrap;
}

.footer .widget-area .widget ul:not(.follow_social) li+li {
    margin-top: 15px;
}

.footer-contact-number li span {
    width: 48%;
    display: inline-block;
}

.footer-contact-number li .footer_country_number a {
    display: block;
    color: var(--colorYellow);
    font-weight: 600;
}

.follow_social li+li {
    margin-left: 20px;
}

.follow_social li a {
    height: 54px;
    width: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bgWhite);
    border-radius: 100%;
    color: var(--colorDark);
    font-size: 28px;
}

.footer_copyright {
    background: var(--bgDullDark);
    font-size: 12px;
}

.footer_bottom_links ul li+li {
    margin-left: 15px;
    padding-left: 15px;
    border-left: solid 1px;
}

.footer .widget-area>.widget:nth-child(2) .footer-widget-cont {
    display: table;
    margin: auto;
}

.footer .widget-area>.widget:last-child .footer-widget-cont {
    display: table;
    margin-left: auto;
}

/**********Footer ENDS**************/

/**********HOMEPAGE***************/

body .custom_tab.elementor-widget-tabs .elementor-tab-title,
body .custom_tab.elementor-widget-tabs .elementor-tab-title.elementor-active,
body .custom_tab.elementor-widget-tabs .elementor-tab-content {
    border: 0;
}

body .custom_tab.elementor-widget-tabs .elementor-tab-title {
    width: 33.33%;
    display: inline-block;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: var(--colorBlack);
    background: var(--bgPrimaryLight);
    padding: 20px 10px;
    border-radius: 0;
    position: relative;
}

body .custom_tab.elementor-widget-tabs .elementor-tabs-wrapper {
    display: flex;
    flex-wrap: wrap;
    overflow: initial;
}

body .custom_tab.elementor-widget-tabs .elementor-tab-title.elementor-active {
    background: var(--bgPrimary);
    color: var(--colorWhite);
}

body .custom_tab.elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tab-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border: solid 10px transparent;
    width: auto;
}

body .custom_tab.elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tab-title.elementor-active::after {
    border-top-color: var(--colorPrimary);
}

body .custom_tab.elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tab-title.elementor-active:before {
    display: none;
}

body .custom_tab.elementor-widget-tabs .elementor-tab-content.elementor-active {
    display: flex !important;
    flex-wrap: wrap;
}

body .custom_tab.elementor-widget-tabs .elementor-tab-content .tab-content-block {
    flex: 1;
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap;
}

body .custom_tab.elementor-widget-tabs .elementor-tab-content {
    padding: 40px 0 0;
}

.tab-content-image {
    width: 25%;
}

.tab-content-cont {
    width: 75%;
    padding-left: 15px;
}

.testimonial_block_image {
    max-width: 150px;
}

.testimonial_block_description .h3_style {
    margin: 30px 0 20px;
    font-weight: 500;
}

.testimonial_block_description p {
    position: relative;
}

.testimonial_block_description p::before {
    content: '';
    height: 76px;
    width: 76px;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../images/quote-left.png") no-repeat;
    background-size: 100%;
}

.testimonial_block_description p::after {
    content: '';
    height: 76px;
    width: 76px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: url("../images/quote-right.png") no-repeat;
    background-size: 100%;
}

.testimonial_block_description p {
    padding: 45px 85px;
}

.custom_testimonial_style .white .sa_owl_theme .owl-nav .owl-prev,
.custom_testimonial_style .white .sa_owl_theme .owl-nav .owl-next {
    width: 42px !important;
    height: 42px !important;
    box-shadow: none !important;
    opacity: .3;
}

.custom_testimonial_style .white .sa_owl_theme .owl-nav .owl-prev:hover,
.custom_testimonial_style .white .sa_owl_theme .owl-nav .owl-next:hover {
    background-color: transparent !important;
}

.custom_testimonial_style .white .sa_owl_theme .owl-nav .owl-prev {
    background: url("../images/left-arrow.png") no-repeat center center !important;
    background-size: 100% !important;
}

.custom_testimonial_style .white .sa_owl_theme .owl-nav .owl-next {
    background: url("../images/right-arrow.png") no-repeat center center !important;
    background-size: 100% !important;
}

/**********HOMEPAGE ENDS**********/

/**********CONTACT PAGE***********/

.custom_form_style label {
    color: var(--colorDark);
    font-weight: 600;
    font-size: 18px;
}

.custom_form_style .form-control {
    background: var(--bgLight);
    border-color: #cccccc;
    min-height: 48px;
    border-radius: 0;
}

.custom_form_style textarea {
    resize: none;
}

.form_submit {
    margin-top: 40px;
    text-align: center;
}

body .wpcf7 form .wpcf7-response-output {
    border-radius: 2px;
    background: #ffe4e4;
    border: solid 1px #c70000;
    color: #c70000;
    padding: 10px;
}

body .wpcf7 form.invalid .wpcf7-response-output,
body .wpcf7 form.unaccepted .wpcf7-response-output,
body .wpcf7 form.payment-required .wpcf7-response-output {
    background-color: #fff5e4;
    border-color: #c88100;
    color: #c88100;
}

body .wpcf7 form.sent .wpcf7-response-output {
    background-color: #efffe1;
    border-color: #3b8000;
    color: #3b8000;
}

.location-block .elementor-widget .elementor-icon-list-item {
    align-items: flex-start;
}

.location-block .elementor-widget .elementor-icon-list-item a .elementor-icon-list-text {
    color: var(--colorPrimary);
}

.location-block .elementor-widget .elementor-icon-list-item:first-child .elementor-icon-list-icon {
    margin-top: 6px;
}

.location-block .elementor-widget .elementor-icon-list-item a .elementor-icon-list-text small {
    font-size: 11px;
    color: #666;
}

.form_submit .wpcf7-spinner {
    position: absolute;
    bottom: 15px;
}

/**********CONTACT PAGE ENDS******/