
/*=============================
 Google Fonts
===============================*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');


/*=============================   
Variable CSS
===============================*/
:root {
    --body-font-family: "Roboto", sans-serif;
    --heading-font-family: "Urbanist", sans-serif;
    --primary-color: #ff6b00;
    --secondary-color: #061e5c;
    --body-font-color: #334770;
    --heading-font-color: #061e5c;
    --paragraph-color: #334770;
    --section-background: #F8FAFF;
    --body-font-size: 16px;
    --body-font-weight: 500;
    --heading-font-weight: 700;
    --body-line-height: 1.62;
    --heading-line-height: 1.2;
    --text-transform: capitalize;
    --blue: #0049DC;
    --metallic-blue: #324B7D;
    --cornflower-blue: #B3CCFF;
    --steel-blue: #B6C1DB;
    --lavender: #ebebeb;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #FF005C;
    --red: #FF3C3C;
    --orange: #fd7e14;
    --yellow: #FFB930;
    --green: #219653;
    --teal: #20c997;
    --cyan: #0dcaf0;
    --white: #ffffff;
    --black: #000;
    --gray: #F1F4FC;
    --gray-two: #F1F5FF;
    --gray-three: #96A1B8;
    --gray-four: #667594;
    --border-color: #E1E5EE;
 
}

body {
    font-family: var(--body-font-family);
    font-weight: var(--body-font-weight);
    font-size: var(--body-font-size);
    line-height: var(--body-line-height);
    color: var(--body-font-color);
    font-style: normal;
}

/* width */
::-webkit-scrollbar {
    width: 8px;
    cursor: pointer;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #ffffff;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #061e5c;
    border-radius: 5px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #ff6b00;
  }
  

img,
.img {
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
}

.f-left {
    float: left
}

.f-right {
    float: right
}

.fix {
    overflow: hidden
}

a,
button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
}

a:focus,
.btn:focus,
button:focus {
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

a:hover,
.portfolio-cat a:hover,
.footer -menu li a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

a,
button {
    color: var(--primary-color);
    outline: medium none;
    text-decoration: none;
}

.btn:focus,
button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
    outline: 0
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font-family);
    color: var(--heading-font-color);
    margin-top: 0px;
    margin-bottom: .7rem;
    font-style: normal;
    line-height: var(--heading-line-height);
    font-weight: var(--heading-font-weight);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

.list-wrap {
    margin: 0px;
    padding: 0px;
}

.list-wrap li {
    list-style: none
}

p {
    font-size: var(--body-font-size);
    font-weight: var(--body-font-weight);
    line-height: var(--body-line-height);
    color: var(--paragraph-color);
    /* text-transform: var(--text-transform); */
    margin-bottom: 15px;
}

hr {
    border-bottom: 1px solid var(--primary-color);
    border-top: 0 none;
    margin: 30px 0;
    padding: 0;
}

label {
    color: var(--body-font-color);
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
}

*::-moz-selection {
    background: var(--primary-color);
    color: var(--white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white);
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: var(--white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--body-font-color);
    font-size: var(--body-font-size);
    opacity: 1;
}

*::placeholder {
    color: var(--body-font-color);
    font-size: var(--body-font-size);
    opacity: 1;
}

.theme-overlay {
    position: relative
}

.theme-overlay::before {
    background: var(--primary-color) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    top: 0;
    width: 100%;
}

.separator {
    border-top: 1px solid var(--primary-color);
}

/* Bootstrap 5 */
.container {
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    --bs-gutter-x: 30px;
}

.row.g-0 {
    --bs-gutter-x: 0;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}


/* scrollUp */
.scroll-top {
    width: 35px;
    height: 35px;
    line-height: 35px;
    position: fixed;
    bottom: -10%;
    right: 30px;
    font-size: var(--body-font-size);
    border-radius: 6px;
    z-index: 99;
    color: var(--white);
    text-align: center;
    cursor: pointer;
    background: var(--primary-color);
    transition: 1s ease;
    border: none;
}

.scroll-top.open {
    bottom: 30px;
}

.scroll-top::after {
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll-top:hover {
    background: var(--secondary-color);
}



/*=============================
Header
===============================*/
.custom-container {
    max-width: 1310px;
}

.custom-container-two {
    max-width: 1360px;
}

.custom-container-three {
    max-width: 1800px;
}

.transparent-header {
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    z-index: 9;
    height: auto;
}

#header-fixed-height.active-height {
    display: block;
    height: 96px;
}

.heder-top-wrap {
    background: var(--secondary-color);
    overflow: hidden;
    padding: 9px 0;
}

.header-top-left .list-wrap {
    display: flex;
    align-items: center;
    gap: 10px 35px;
}

.header-top-left .list-wrap li {
    font-size: 14px;
    color: var(--lavender);
    display: flex;
    align-items: center;
    line-height: 1.28;
    position: relative;
}

.header-top-left .list-wrap li::before {
    content: "";
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 500%;
    background: var(--metallic-blue);
}

.header-top-left .list-wrap li:last-child::before {
    display: none;
}

.header-top-left .list-wrap li i {
    font-size: 20px;
    margin-right: 8px;
    line-height: 0;
    color: var(--cornflower-blue);
}

.header-top-left .list-wrap li a {
    color: var(--lavender);
}

.header-top-left .list-wrap li a:hover {
    color: var(--primary-color);
}

.header-top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-contact {
    position: relative;
    margin-right: 35px;
}

.header-contact::before {
    content: "";
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 500%;
    background: var(--metallic-blue);
}

.header-contact a {
    font-size: 14px;
    line-height: 1.28;
    color: var(--lavender);
    display: flex;
    align-items: center;
}

.header-contact a i {
    font-size: 20px;
    margin-right: 8px;
}

.header-contact a:hover {
    color: var(--primary-color);
}

.header-social .list-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-social .list-wrap li a {
    font-size: 15px;
    color: var(--lavender);
}

.header-social .list-wrap li a:hover {
    color: var(--primary-color);
}

.menu-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.logo img {
    height: 72px;
    object-fit: contain;
    width: 100%;
}


.navbar-wrap {
    display: flex;
    flex-grow: 1;
}

.navbar-wrap ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 0;
    margin: 0 0 0 auto;
}

.navbar-wrap ul li {
    list-style: none;
    display: block;
    position: relative;
}

.navbar-wrap ul li a {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--secondary-color);
    padding: 40px 15px;
    display: block;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.navbar-wrap>ul>li.active>a,
.navbar-wrap>ul>li:hover>a {
    color: var(--primary-color);
}

.navbar-wrap>ul>li .nav-link:focus {
    color: var(--primary-color);
}

.navbar-wrap>ul>li .nav-link.active,
.mobile-menu .navigation li>a.nav-link.active{
    color: var(--primary-color);
}



.header-action>ul {
    display: flex;
    align-items: center;
    margin-left: 25px;
}

.header-action>ul li {
    position: relative;
    margin-left: 25px;
}

.header-action ul li:first-child {
    margin-left: 0;
}

.header-action ul li a {
    color: var(--heading-font-color);
    font-size: 14px;
}

.header-action ul li.header-search {
    line-height: 0;
}

.header-action ul li.header-search a {
    color: #334770;
    font-size: 22px;
    line-height: 0;
    transition: all 0.3s ease-out 0s;
}

.header-action ul li.header-search a:hover {
    color: var(--primary-color);
}

.header-action .header-btn .btn {
    color: var(--white);
    font-size: 15px;
    padding: 16px 33px;
    border: 2px solid transparent;
}

.header-action .header-btn .btn::before {
    display: none;
}

.header-action .header-btn .btn:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}





.sticky-menu {
    position: fixed;
    left: 0;
    margin: auto;
    top: 0;
    width: 100%;
    z-index: 99;
    background: var(--white);
    
    transition: .2s ease-in;
    animation-duration: .5s;
    animation-name: slideInDown;
}
@keyframes slideInDown{

    0% {
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    
    100% {
        transform: translateZ(0);
    }
    }

.flexBoxtop-content {
    display: block;
    align-items: center;
    gap: 15px;
}

.mobile-hamburger-toggler {
    width: 32px;
    height: 32px;
    background: #061e5c;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    font-size: 22px;
    font-weight: bold;
    color: #fff;

   
}

/*=============================
Mobile Menu
===============================*/
.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    display: none;
    color: var(--white);
    margin-right: 30px;
    top: 15px;
}

.nav-logo img {
    max-width: 135px;
}

.mobile-search {
    padding: 0 20px 25px 25px;
}

.mobile-search form {
    position: relative;
}

.mobile-search input {
    display: block;
    width: 100%;
    border: none;
    padding: 10px 45px 10px 20px;
    font-size: 14px;
    font-weight: 500;
    height: 45px;
    background: var(--gray);
    color: var(--secondary-color);
}

.mobile-search input::placeholder {
    font-size: 14px;
    font-weight: 500;
    color: var(--heading-font-color);
}

.mobile-search button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border: none;
    padding: 0;
    right: 20px;
    line-height: 1;
    background: transparent;
    color: var(--secondary-color);
}

.mobile-menu {
    position: fixed;
    left: 0px;
    top: 0;
    width: 320px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    z-index: 99;
    border-radius: 0px;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86)e;
    -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(-110%);
}

.mobile-menu .navbar-collapse {
    display: block !important;
}

.mobile-menu .logo {
    position: relative;
    padding: 8px 25px;
    display: flex;
    justify-content: left;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .navigation li.current>a:before {
    height: 100%;
}

.menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.5);
}

.mobile-menu-visible .menu-backdrop {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--white);
    padding: 0px 0px;
    z-index: 5;
    box-shadow: -9px 0 14px 0px rgb(0 0 0 / 6%);
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .close-btn {
    width: 32px;
    height: 32px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #061e5c;
    color: #fff;
    right: 10px;
    top: 10px;
    border-radius: 50px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.mobile-menu .navigation {
    position: relative;
    display: block !important;
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
}

.mobile-menu .navigation ul {
    padding: 0;
    margin: 0;
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation:last-child {
    border-bottom: 1px solid rgb(0 0 0 / 10%);
    display: none;
}

.mobile-menu .navigation li>ul>li:first-child {
    border-top: 1px solid rgb(0 0 0 / 10%);
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 60px 10px 25px;
    font-size: 16px;
    font-weight: 700;
    color: var(--heading-font-color);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
}


.mobile-menu .navigation li>a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}



.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 40px 0;
    scroll-margin-top: 112px;
    overflow: clip;
    
}

.section-title {
    text-align: center;
    padding: 10px 0;
    margin-bottom: 30px;
    position: relative;
}

.about,
.empoweringTravel,
.services{
    text-align: justify;
}
/* baner */

.banner-area {
    width: 100%;
    height: 400px;
    position: relative;
}

.allpageBanner{
    width: 100%;
    height: 250px;
    position: relative;   
}

.banner-area img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.allpageBanner img {
    width: 100%;
    height: 250px;
    object-fit: cover;  
}
.banner-area .item_content{
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    position: absolute;
    
}


.banner-area h2.title {
   color: #fff;
    font-size: 46px !important;
   
}

.allpageBanner .item_content .heading{
    text-align: center;
}
.allpageBanner .item_content .heading p{
    color: #fff;
}

.banner-area .title_color{
    color: var(--primary-color);
}

.banner-area p{
    font-size: 16px;
    color: #e9e9e9;
}

.banner-area div#particles-js {
    overflow: hidden;
     width: 100%;
     height: calc(100% - 10px);
     background-image: url(inspector-stylesheet);
     background-size: cover;
     background-position: 50% 50%;
     background-repeat: no-repeat;
     position: absolute;
     z-index: 2;
     top: 0;
 } 







 /*=============================
	development
===============================*/
.development-area {
   position: relative;
    z-index: 4;
}

.development-wrapper-item {
    background: var(--white);
    box-shadow: 0px 4px 50px rgba(233, 233, 243, 0.5);
    border-radius: 10px;
    padding: 35px 50px 30px;
    margin-top: -56px;
    position: relative;
    z-index: 1;
}

.development-wrapper-item h2.title {
    text-align: center;
    padding: 10px 0;
    margin-bottom: 30px;
    position: relative;
}

.development-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 10px;
    border: 1px solid #ff6b00;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.development-img {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-right: 20px;
 border-radius: 14px;
    background: var(--lavender);
    position: relative;
}



.development-img img {
    transition: .3s linear;
    transform: rotateY(0);
}

.development-item:hover .development-img img {
transform: rotateY(180deg);
}
.development-img img {
    width: 60px;
    height: 60px;
   object-fit: contain;
}

.development-content .title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}

.development-content p {
    margin-bottom: 0;
    color: var(--paragraph-color);
}


.development-wrapper-item h2.title::before,
.development-wrapper-item h2.title::after {
    content: '';
    height: 2px;
    max-width: 100%;
    width: 450px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background:var(--primary-color);
}

.development-wrapper-item h2.title::before{
    top: 0;
}


/*--------------------------------------------------------------
# About Section 
--------------------------------------------------------------*/
#aboutUs strong {
    font-size: 1.75rem;
    font-family: var(--heading-font-family);
    color: var(--heading-font-color);
    margin-top: 0px;
    margin-bottom: .7rem;
    font-style: normal;
    line-height: var(--heading-line-height);
    font-weight: var(--heading-font-weight);
}

.about-image {
    position: relative;
    text-align: center;
    margin-left: 0px;
}

.about-image .years-design {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    max-width: 400px;
    padding: 15px 10px;
    border-radius: 5px;
    background-color: #061e5cd1;
    border: 2px solid var(--primary-color);
    -webkit-box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
    box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
    margin-left: auto;
    margin-right: auto;
}
  

.about-image .years-design h2 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
}

.about-image .years-design h5 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
}
/*--------------------------------------------------------------
# About Section End
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

#testimonials .section-title{
    text-align: center;
        padding: 10px 0;
        margin-bottom: 10px;
        position: relative;
    }
    .section-title h2:after {
        content: "";
        position: absolute;
        display: block;
        width: 50px;
        height: 3px;
        background: var(--primary-color);
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }

    
.testimonials .section-header {
    margin-bottom: 40px;
  }
  
  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }
  
  .testimonials .testimonial-item {
    text-align: center;
  }
  
  .testimonials .testimonial-item .testimonial-img {
    width: 150px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid var(--background-color);
    margin: 0 auto;
    object-fit: contain;
}
  
  .testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
  }
  
  .testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0 0 15px 0;
  }
  
  .testimonials .testimonial-item .stars {
    margin-bottom: 15px;
  }
  
  .testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
  }
  
  .testimonials .testimonial-item .quote-icon-left,
  .testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
  }
  
  .testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
  }
  
  .testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
  }
  
  .testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
  }
  
  .testimonials .swiper-wrapper {
    height: auto;
  }
  
  .testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: color-mix(in srgb, #000000, transparent 85%);
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
  }
  
  @media (min-width: 992px) {
    .testimonials .testimonial-item p {
      width: 80%;
    }
  }
  

  /*--------------------------------------------------------------
# contact Section
--------------------------------------------------------------*/
.contact-content {
   padding: 25px;
   
}

.contact .info-item i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
    margin-right: 20px;
}  

.contact .info-item h4 {
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}  

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: 
color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-info .info-item p {
    color: 
color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 30px;
    font-size: 15px;
}



.contact .php-email-form {
    width: 100%;
  }
  

  .contact .php-email-form button[type=submit] {
    background: #ff6b00;
    color: #fff;
    border: 0;
    padding: 13px 50px;
    transition: 0.4s;
    border-radius: 4px;
    border: 1px solid #ff6b00;
  }
 
  .contact .php-email-form button[type=submit]:hover,
  .contact .php-email-form button[type=submit]:focus {
    background: #fff;
    color: #ff6b00;
    border: 1px solid #ff6b00;
  }


  /*  */

  .contact-gridBox {
    display: grid;
    grid-template-columns: 1fr 2fr;
    box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
}

.contact_left {
    background: #061e5c;
}  
.contact-header h3,
.contact-info h4 {
color: #fff;
}


.contact .info-item i {
    font-size: 20px;
    color: #f2f2f2;
    transition: all 0.3s ease-in-out;
    margin-right: 21px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid;
    border-radius: 50%;
}
.contact .contact-header p,
.contact .contact-info .info-item p {
    margin-bottom: 30px;
    font-size: 15px;
    color: #b0b0b0;
}

.contact_right {
    padding: 25px 40px;
    background: #fff;
}
.form-group {
    margin-bottom: 1rem;
}
label {
    display: inline-block;
    margin-bottom: 0.5rem;
}


.contact_right .label {
    color: #000;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}

#contactForm .form-control {
    font-size: 16px;
}

.contact_right .form-control {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    
}

.form-control {
    display: block;
    width: 100%;
    height: 40px;
    background: #fff;
    color: rgba(0, 0, 0, 0.8);
    font-size: 14px;
   
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
   
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;

    border-radius: 0px;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.form-control:focus{
    background-color: #fff !important;
    border-bottom:1px solid #122c46;
    border-radius: 0px;
}
/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
  }
  
  .php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
  }
  
  .php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
  }
  
  .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
  }
  
  @keyframes php-email-form-loading {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  
/*--------------------------------------------------------------
# contact Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# services Section
--------------------------------------------------------------*/


#services .card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
     border:0;
    border-radius: .5rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}


/*--------------------------------------------------------------
# services Section
--------------------------------------------------------------*/


footer#footer  {
  background: #061e5c;
}
.footerLink {
  color: #fff;
  text-decoration: none;
}


/* scroll-to-top */

.scroll-to-top-button{
    display: none;
}

.scroll-to-top-button.active{
    display: block !important;
}

.scroll-to-top-button a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: rgba(0, 0, 0, .8);
    z-index: 9;
    cursor: pointer;
   
}

.scroll-to-top-button a span {
    transform: rotate(-90deg);
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    color: #ff6b00;
    cursor: pointer;
}




/* scroll-to-top */



/* Enquiry Form */

section.requestDemo.section {
    background: #f8f8f8;
}

.gridRequestDemo {
    display: grid;
    grid-template-columns: 1fr 2fr;
    box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
  border-radius: 8px;
}
.enquiryFormLeft {
    background: #061e5c;
    padding: 25px;
    border-radius: 8px 0 0 8px ;
}

.enquiryFormLeft .contact-header h3 {
    color: #ff6b00;
    padding-bottom: 4px;
    border-bottom: 2px solid;
    margin-bottom: 20px;
}

.enquiryFormLeft label{
    color: #ebebeb;
}


.inputPhoneNumber {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.inputPhoneNumber input:first-child {
    width: 75px;
    margin-right: 10px;
}



form#quick label {
    margin: 0;
}
form#quick .form-control {
    margin-bottom: 10px;
}

form#quick input.form-check-input {
    margin-bottom: 10px;
    margin-right: 10px;
}

.enquiryFormRadio {
    padding: 25px 40px;
    background: #fff;
    border-radius: 0 8px 8px 0;
}

.enquiryFormRadio .contact-header h3 {
    color: #061e5c;
    padding-bottom: 4px;
    border-bottom: 2px solid;
    margin-bottom: 20px;
}

form#quick textarea.form-control {
    width: 97% !important;
}

.enquiryFormRadio button {
    background: #ff6b00;
    color: #fff;
    border: 0;
    padding: 13px 50px;
    transition: 0.4s;
    border-radius: 4px;
    border: 1px solid #ff6b00;
}

.enquiryFormRadio button:hover,
.enquiryFormRadio button:focus {
    background: #ffffff;
    color: #ff6b00;
     border: 1px solid #ff6b00;
}

/* Enquiry Form */


/* thank you */

section.mainContent {
    max-width: 500px;
    margin: 20px auto;
    text-align: center;
    background: #e5e5e5;
    padding: 20px;
    border-radius: 5px;
    font-family: "Roboto Condensed", sans-serif;
}

.mainContent  button {
    background: #ff6b00;
    color: #fff;
    border: 0;
    padding: 13px 50px;
    transition: 0.4s;
    border-radius: 4px;
    border: 1px solid #ff6b00;
}

.mainContent button:hover,
.mainContent button:focus {
    background: #ffffff;
    color: #ff6b00;
     border: 1px solid #ff6b00;
}

/* thank you */


/* contact icon right side */

.btn:hover {
    color: #212529;
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}
.contactButton {
    height: 50px;
    width: 50px;
    background-color: #ff6b00;
    border-radius: 50%;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 90px;
    right: 20px;
    color: #ffffff;
    z-index: 9999;
}

.contactCard ul li a {
    width: 212px;
}


/* contact icon right side */


/* whatsapp and call */

.fixSticky {
    position: fixed;
    z-index: 999;
    bottom: 20px;
  }
  
  .fixSticky.left {
    left: 10px;
  
  }
  .fixSticky.right{
    right: 10px;
  }
  
  .fixSticky a {
    color: #131313;
    text-decoration: none;
  }
  
  .fixSticky a img {
    width: 50px;
  }
  
  .fixSticky a.call {
    background: #ff6b00;
    border-radius: 18px;
    padding: 5px 10px;
    margin: 0 5px;
    font-size: 1.2em;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    color: #fff;
    /* border: 1px dotted #fff; */
  }
  
  .fixSticky a.call:hover {
    color: #131313 !important;
  }
  
  .fixSticky a.call img {
    width: 20px !important;
    filter: invert(1);
  }
  
  /* whatsapp and call */