@import url('font-awesome.css');
@import url('flaticon.css');
@import url('animate.css');
@import url('owl.css');
@import url('jquery-ui.css');
@import url('jquery.fancybox.min.css');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*** 

====================================================================
    Reset
====================================================================

***/

/**/
* {
    margin:0px;
    padding:0px;
    border:none;
    outline:none;
}

/*** 

====================================================================
    Global Settings
====================================================================

 ***/

html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.7em;
    font-weight: 400;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    scroll-behavior: smooth;
    box-sizing: border-box;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a{
    text-decoration:none;
    cursor:pointer;
    color:#0060ff;
    /* transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    display: inline-block;*/
}

button,
a:hover,a:focus,a:visited{
    text-decoration:none;
    outline:none !important;
}

h1,h2,h3,h4,h5,h6 {
    position:relative;
    font-weight:normal;
    margin:0px;
    background:none;
    line-height:1.6em;
}

p {
    position: relative;
    line-height: 1.8em;
    font-size: 15px;
    color: #000;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0px;
}


/* Typography */

h1{
    font-size:72px;
}

h2{
    font-size:36px;
}

h3{
    font-size:30px;
}

h4{
    font-size:24px;
}

h5{
    font-size:20px;
}

h6{
    font-size:18px;
}

ul,li{
    list-style:none;
    padding:0px;
    margin:0px; 
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    display: inline-block;
}

.text-warning {
    color: #ed8b00!important;
}

input,
input.form-control:focus, 
input[type=text]:focus, 
[contenteditable].form-control:focus {
  box-shadow: inset 0 0px 0 ;
}
input[type="text"],input[type="password"],input[type="email"],textarea,select{
    width: 100%;
    padding: 7px;
    border: 1px solid #a3a3a3;
    margin: 0;
    display: inline-block;
    outline: none;
    border-radius: 0;
}
.form-control{
    width: 100%;
    padding: 7px;
    border: 1px solid #a3a3a3;
    margin: 0;
    display: inline-block;
    outline: none;
    border-radius: 0;
}
::placeholder{
    opacity: 0.7;
    font-size: 15px;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.block {
    display: block;
}
.m-b-30{
    margin-bottom: 30px;
}

.pad-80 {
    padding: 80px 0px;
}
.pad-50 {
    padding: 50px 0px;
}
.pad-80-20 {
    padding: 80px 0px 20px;
}
.pad-20 {
    padding: 20px 0px;
}
.pad-80-50 {
    padding: 80px 0px 50px;
}
.pad-100 {
    padding: 100px 0px;
}
.bg-1 {
    background: #f7f7f7;
}
.centered {
    text-align: center;
}
.mb-20 {
    margin-bottom: 20px!important;
}
.mb-40 {
    margin-bottom: 40px!important;
}

.box-shadow-1 {
    -webkit-box-shadow: 0px 0px 5px 2px rgb(0 0 0 / 5%);
    box-shadow: 0px 0px 5px 2px rgb(0 0 0 / 5%);
}
.bg-img {
    background-size: cover!important;
    background-repeat: no-repeat!important;
    background-position: center center!important;
    background-color: linear-gradient(184deg, #d1223e, #a2636d)!important;
}
.mb-15 {
    margin-bottom: 15px!important;
}

.overlay {
    position: relative;
    z-index: 0;
}

.overlay:before {
    position: absolute;
    content: "";
    background: rgba(0,0,0,1);
    -moz-background:rgba(0,0,0,1);
    -webkit-background: rgba(0,0,0,1);
    -ms-background: rgba(0,0,0,1);
    -o-background: rgba(0,0,0,1);
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: .7;
    top: 0;
}

.bg-overlay {
    position: relative;
    z-index: 2;
    background-position: center center;
    background-size: cover;
}
.bg-overlay::after {
    background-color: rgb(233 233 233 / 75%);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
}
.bg-fixed {
    background-attachment: fixed !important;
}

/*Animation*/

@-webkit-keyframes mover {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
}

@keyframes mover {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

@-webkit-keyframes movebounce {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}


@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
@keyframes fly {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
   -webkit-transform: translateX(600px);
            transform: translateX(600px);
  }
  50% {
   top: 10px;
  }
}


/*==================Section Title Css===============*/

.section-title {
    position: relative;
    margin-bottom: 35px;
    color: #262261;
    font-size: 40px;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: 1px;
    display: inline-block;
    text-transform: capitalize;
}

.section-title span {
    color: #faaa3a;
}

/*==================Button Css===============*/
.theme-btn{
    cursor: pointer;
    display: inline-block;
    -webkit-transition:all 300ms ease;
    transition: all 300ms ease;
    text-align: center;
    line-height: normal;
}
.btn-style-one {
    display: inline-block;
    font-size: 15px;
    color: #ffffff;
    padding: 10px 10px;
    border-radius: 3px;
    font-weight: 500;
    text-transform: capitalize;
    background: -webkit-linear-gradient(to right, #1d4c42, #181716);
    background: linear-gradient(to right, #1d4c42, #181716);
}
.btn-style-one:hover {
    color: #000;
    transition: 500ms ease-out;
}

/*** 

====================================================================
    Top-Bar Css
====================================================================

***/
.header-top {
    background: #fff;
    padding: 3px 0px;
}
.header-top img{
    height: 85px;
    object-fit: fill;
}
.header-top li{
    margin-right: 20px;
}
.iconbox{
    display: flex;
    color: #000;
    font-weight: 500;
}
.iconbox .fa{
    color: #8f8f8f;
    font-size: 17px;
    margin-right: 5px;
}
.iconbox .iconbox-text{
    font-weight: 600;
    font-size: 15px;
}
/*** 

====================================================================
    Header Css
====================================================================

***/
.header {
    /*box-shadow: 0px 0px 5px rgb(136 133 133 / 80%);*/
    /*position: fixed;*/
    /*width: 100%;
    z-index: 99999;
    top: 0;*/


    width: 100%;
    z-index: 999;
    position: sticky;
    top: -1px;
}

.main-nav {
    background: #00287a;
    padding: 15px 0px;
}

.main-nav .site-navigation {
    padding: 0px;
}

.main-nav .site-navigation .navbar-brand {
    padding: 0;
}

.main-nav .site-navigation .navbar-brand img {
    height: 75px;
    vertical-align: middle;
    object-fit: cover;
    width: 100%;
    line-height: 75px;
    padding: 5px;
}
.main-nav .site-navigation .site-menu .nav-item {
    margin-right: 25px;
    position: relative;
}
.main-nav .site-navigation .site-menu .menu-link {
    position: relative;
    display: block;
    color: #fff;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
}
.main-nav .site-navigation .site-menu .menu-link:hover {
    color: #fff;
}

.main-nav .site-navigation .outer-box .btn-box {
    display: flex;
    align-items: center;
}
.main-nav .site-navigation .outer-box .btn-box .nav-user {
    width: 38px;
    height: 38px;
    background: #10958714;
    text-align: center;
    display: inline-block;
    line-height: 38px;
    border-radius: 50px;
    box-shadow: 0px 0px 3px 0px rgb(98 195 184);
    margin-right: 30px;
    font-size: 22px;
    font-weight: 600;
    padding-left: 3px;
    color: #056839;
}
.main-nav .site-navigation .outer-box .btn-box .theme-btn {
    min-width: 80px;
    text-transform: uppercase;
    font-size: 15px;
}
.main-nav .site-navigation .close-menu-wrap {
    display: none;
}

.main-nav .site-navigation .site-menu .has-children span {
    font-size: 10px;
    margin-left: 4px;
    color: #fff;
}

/*Mobile Menu*/
.mobile-menu-trigger {cursor: pointer; margin-left: 30px; display: none; background: transparent; border: none; }
.mobile-menu-trigger span {
    height: 2px;
    display: block;
    width: 25px;
    margin-bottom: 7px;
    background-color: #00287a;
}
.mobile-menu-trigger span:last-child {margin-bottom: 0; }
.mobile-menu-container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #00287a;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    overflow-y: scroll;
    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    overflow-x: hidden;
    -webkit-transition: .4s;
    transition: .4s;
}
.mobile-menu-container li {
    opacity: 0;
    visibility: hidden;
    -ms-transform: translateX(1000px);
    -webkit-transform: translateX(1000px);
    transform: translateX(100px);
    -webkit-transition: 1s;
    transition: 1s;
    border-top: 1px solid rgb(255 255 255 / 8%);
}
.mobile-menu-container li:nth-last-child(1) {border-bottom: 1px solid rgb(255 255 255 / 8%); }
.mobile-menu-container li > a .slicknav_arrow:after {
    content: "+";
    position: absolute;
    top: 0;
    bottom: 0;
    color: white;
    z-index: 999;
    margin: 0 auto;
    text-align: center;
    right: 0;
    left: 0;
    font-size: 20px;
    line-height: 45px;
    font-weight: 600;
}
.mobile-menu-container.menu-open li.slicknav_open > a .slicknav_arrow:after{content: "-";}
.mobile-menu-container.menu-open {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
.mobile-menu-container.menu-open li {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.mobile-menu-close {
    position: absolute;
    right: 20px;
    top: 50px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1;
}
.mobile-menu-close::before {
    left: 15px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.mobile-menu-close::after {
    right: 13px;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.mobile-menu-close::before, .mobile-menu-close::after {
    position: absolute;
    height: 30px;
    width: 2px;
    background: #ffffff;
    content: '';
    top: 0;
}
#mobile-menu-wrap {
    height: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    padding: 150px 20px 20px 20px;
}
#mobile-menu-wrap div {background-color: transparent; }
#mobile-menu-wrap .slicknav_item i{display: none;}
/*Sidebar Start*/
.slicknav_nav, .slicknav_nav.slicknav_hidden {
    display: block !important;
}
.slicknav_btn {display: none !important; }
.slicknav_menu {padding-left: 0; }
.slicknav_item.slicknav_row a {border-bottom: 0; }
.slicknav_nav .slicknav_row, .slicknav_nav a {
    padding: 10px 0px;
    margin: 0;
}
.slicknav_nav .slicknav_arrow {
    font-size: 0;
    background: rgb(255 255 255 / 8%);
    height: 100%;
    width: 50px;
    display: inline-block;
    position: absolute;
    top: 0;
}
.slicknav_nav ul {margin: 0 0 0 0px; }
.slicknav_nav .menu-item-has-children ul {margin-bottom: 00px; }
.slicknav_nav .menu-item-has-children ul li {padding-left: 25px; }
.sub-menu .menu-item-has-children a i {position: absolute; right: 20px; top: 20px; }
.slicknav_nav a:hover, .slicknav_nav .slicknav_row:hover {background-color: transparent; }
.slicknav_nav .slicknav_row:hover, .slicknav_nav a:hover {border-radius: 0; }
.slicknav_item.slicknav_row {display: inline-block; width: 100%; position: relative; }
.slicknav_arrow {-webkit-transition: .3s; transition: .3s; right: 0; top: 17px; position: absolute; }
.slicknav_nav a, .slicknav_row a {color: #ffffff; font-size: 16px; display: inline-block; }           
/* Mobile Menu CSS End*/


/*-========Sub Menu/Dropdown=========*/
.site-navigation .site-menu .nav-item.has-children{
    position: relative;
}

.site-navigation .site-menu .nav-item.has-children .dropdown {
    position: absolute;
    left: 0;
    background-color: #ffffff;
    min-width: 250px;
    z-index: 9999;
    box-shadow: 0 0px 6px 3px rgb(0 0 0 / 5%);
    text-align: left;
    transition: all .5s ease;
    visibility: hidden;
    opacity: 0;
    top: 45px;
}
.site-navigation .site-menu .nav-item.has-children .dropdown .dropdown {
    min-width: 300px;
}

.site-navigation .site-menu .has-children .dropdown .dropdown {
    left: 200px;
    top: 3px;
}

.site-navigation .site-menu .nav-item.has-children .dropdown .nav-item {
    display: block;
    position: relative;
    padding: 5px 20px;
    border-bottom: 1px solid #ebefef;
    width: 100%;
}

.nav-item.has-children .dropdown .nav-item a {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 10px;
    color: rgb(0 0 0);
    display: block;
    line-height: normal;
    text-transform: capitalize;
    transition: all .5s ease;
}

.site-navigation .site-menu .nav-item.has-children .dropdown .nav-item:last-child {
    border-bottom: 0;
}

.nav-item.has-children .dropdown .nav-item a:hover {
    color: #00287a;
}

.site-navigation .site-menu .has-children:hover >.dropdown {
    opacity: 1;
    visibility: visible;
    transition: all .5s ease;
}

/*Common Css*/
.p-40 {
    padding: 40px 0px;
}
.pb-30 {
    padding-bottom: 30px;
}
.p-70 {
    padding: 70px 0px;
}
.pb-70 {
    padding-bottom: 70px;
}
.p-100 {
    padding: 100px 0px;
}
.pb-100 {
    padding-bottom: 100px;
}
.relative {
    position: relative;
}
.bg-shape {
    position: absolute;
    z-index: 1;
}

.shape-1 {
  top: 80px;
  left: 10px;
  width: 10%;
  -webkit-animation: rotation 50s infinite linear;
          animation: rotation 50s infinite linear;
  opacity: 0.4;
}

.shape-2 {
  top: 380px;
  right: 0px;
  -webkit-animation: mover 3s infinite alternate;
          animation: mover 3s infinite alternate;
  opacity: 0.4;
}

.shape-3 {
  top: 448px;
  left: 30px;
  -webkit-animation: mover 3s infinite alternate;
          animation: mover 3s infinite alternate;
  opacity: 0.4;
}

.shape-4 {
    top: 125px;
    left: 110px;
    opacity: 0.5;
    -webkit-animation: rotation 25s infinite linear;
    animation: rotation 25s infinite linear;
}

.shape-5 {
    top: 490px;
    right: 39%;
    opacity: 0.4;
    -webkit-animation: fly 25s infinite linear;
    animation: fly 25s infinite linear;
}
.shape-5 img {
    width: 60px;
}

.about-title h2 {
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    color: #303030;
    font-family: 'Poppins', sans-serif;
}
.banner-btn{
    margin-left: -10px;
    background: #FFC229;
    border: #fecb00;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}
.banner-btn:hover{
    margin-left: 20px;
    transition: all .5s;
    background: #FFC229;
    border: #fecb00;
}
/*** 

====================================================================
    Home Banner Css
====================================================================

***/

.hero-slider-item {
    width: 100%;
    height: 500px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

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

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


.hero-slider-content .welcome-text {
    display: inline-block;
    padding: 10px;
    background: red;
    color: red!important;
    z-index: 1;
}
.animated.fadeInUp.welcome-text {
    color: #fff;
    font-size: 20px;
    border: 2px solid #b5aeae;
    padding: 5px 15px;
    border-radius: 10px;
    line-height: normal;
    font-weight: 600;
    margin-bottom: 30px;
    display: inline-block;
}

.hero-slide-content h1 {
    color: #FFFFFF;
    font-size: xxx-large;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.hero-slide-content h2{
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 800;
}

.hero-slider-area .owl-carousel {
    z-index: 1;

}
.hero-slider-area .owl-nav div {
    z-index: 9!important;

}

.hero-slider-area .owl-nav div {
    position: absolute;
   -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-align: center;
    line-height: 51px;
}
.hero-slider-area .owl-nav .owl-prev {
  top: 47%;
  left: 30px;
}

.hero-slider-area .owl-nav div span {
  color: #ffffff;
  font-size: 15px;
}

.hero-slider-area .owl-nav .owl-next {
  top: 47%;
  right: 30px;
}
.hero-slide-content span{
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}
.hero-slide-content p {
    position: relative;
    line-height: 1.8em;
    font-size: 25px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}
.content-button{
    padding: 10px 15px;
    font-weight: 600;
    border-radius: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}
/*** 

====================================================================
    Home Text Box  Css
====================================================================

***/
.box-area {
    margin-top: -60px;
}
.single-box {
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
    background-position: 
    center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 18px;
    border-top: 5px solid #98cf99;
    border-radius: 5px;
}
.nth-01 {
    z-index: 2;
}
.single-box:nth-child(odd) {
    background: #216344;
}
.single-box.bg-2 {
    background: #007e01!important;
}
.single-box:nth-child(3) {
    background: #216344;
}
.single-box h2 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
}

.single-box p {
    color: #e6e1e1;
    margin-bottom: -6px;
    font-size: 15px;
}

/*Project*/
.single-project {
    position: relative;
    display: block;
}
.equal-height {
    height: 217px;
    width: 100%;
    overflow: hidden;
}
.equal-height img {
    height: 100%;
    overflow: hidden;
    transition: 500ms ease-out;
}
.img-hover-layout {
    position: absolute;
    opacity: 0;
    transition: all .3s;
    background: #eee;
    z-index: 999;
}
.single-project:hover .img-hover-layout {
    opacity: 1;
}

.img-hover-layout.overleft {
    height: 100%;
    top: 0;
    left: 0;
    width: 0;
    margin-top: 0;
    background: #343a4075;
}
.overlay-text {
    position: absolute;
    color: #ffff!important;
    font-size: 21px;
    font-weight: 600;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}
.single-project:hover .img-hover-layout.overleft {
    width: 100%;
    margin-top: 0;
}
.single-project:hover img{
    transform: scale(2);
    overflow: hidden;
    transition: 500ms ease-out;
}

/*** 

====================================================================
   Page Title Css
====================================================================

***/
.page-title-area {
    padding: 190px 0px 120px;
    text-align: center;
    color: #fff;
}

.page-title-area .page-title-content h2 {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 45px;
    font-weight: 700;
}

.page-title-area .page-title-content li {
    display: inline-block;
    color: #ff7777;
    position: relative;
    font-size: 15px;
    font-weight: 800;
}

.page-title-area .page-title-content li a {
    color: #ffff;
}

.page-title-area .page-title-content li a i {
    font-size: 13px;
    display: inline-block;
    margin: 0px 5px;
}

/*** 

====================================================================
    Contact Us Page
====================================================================

***/
.contact-section-title {
    position: relative;
    margin-bottom: 19px;
    color: #262261;
    font-size: 30px;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: 1px;
    display: inline-block;
    text-transform: capitalize;
}
.contact-section-title span {
    color: #faaa3a;
}
.contact-widget{
    text-align: center;
    margin-bottom: 1rem;
    box-shadow: 0px 2px 4px 2px #ddd;
    padding: 10px;
    min-height: 120px;
}
.contact-widget h4{
    font-size: 17px;
    color: #0c2c23;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 0px;
}
.contact-widget span a{
    position: relative;
    line-height: 1.8em;
    font-size: 15px;
    color: rgb(10 7 7);
    margin-bottom: 20px;
}
.contact-widget span a:hover{
    color: #216344;
}
/*** 

====================================================================
    Footer Section
====================================================================

***/
.main-footer {
   /* background: -webkit-radial-gradient(circle farthest-corner at center center, #1f1e1e 0%, #131E3C 100%);
    background: radial-gradient(circle farthest-corner at center center, #1f1e1e 0%, #131E3C 100%);*/
    position: relative;
    padding: 70px 0px 0px;
    background: #000000e0;
}

.widget-section {
    position: relative;
    padding-bottom: 20px;
}

.footer-widget .about-widget img {
    width: 35%;
    margin-bottom: 25px;
}

.footer-widget p {
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8em;
}

.footer-widget .title {
    font-size: 18px;
    line-height: 14px;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-widget .title span {
    color:#ffffff;
}

.footer-widget ul li {
    position: relative;
    margin-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-widget ul li a {
    display: block;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
}


.footer-widget .contact-info-widget ul li a {
    padding-left: 16px;
}

.footer-widget .contact-info-widget ul li .icon {
    color: #8f8f8f;
    font-size: 13px;
    font-weight: 600;
}

.footer-widget .social-link-widget a {
    display: inline-block;
    margin-right: 10px;
    color: #424242;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    padding: 0px 10px;
}

.footer-widget .social-link-widget a i {
    line-height: 35px;
    font-size: 17px;
}

.footer-bottom-area {
    padding: 10px 0 10px;
    background: #1f1f1f;
}

/*Service CSS*/

.service-section .service-block {
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0px 0px 4px 1px rgb(157 157 157);
    border-radius: 10px;
}
.service-section .service-block .inner-box {
    text-align: center;
    padding: 10px;
}

.inner-box:hover .inner-image{
    margin-top: 10px;
    transition: all 0.5s;
}
.service-section .service-block .inner-box .icon-box {
    color: #000000;
    font-size: 60px;
    line-height: 1em;
}
.service-section .service-block h4 {
    font-weight: 600;
    line-height: 1.3em;
    margin-top: 22px;
    margin-bottom: 18px;
    font-size: 16px;
}
.service-section .service-block h4 a {
    font-size: 19px;
    font-weight: 700;
    line-height: 25px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    color: #00287a;
    padding-bottom: 10px;
}
.service-section .service-block .inner-text {
    color: #555555;
    font-size: 15px;
    line-height: 1.6em;
    font-weight: 500;
    z-index: 1;
    margin-bottom: 0;
}
.why-choose-section{
    background-repeat: no-repeat !important; background-attachment: fixed !important; background-size: cover !important;padding-top: 10px !important; padding-bottom: 10px !important;
}
.why-choose-section h4{
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 25px;
    text-transform: uppercase;
}

.contact-section{
    background-repeat: no-repeat !important; background-attachment: fixed !important; background-size: cover !important;padding-top: 70px !important; padding-bottom: 90px !important;
}
.contact-title{
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 15px;
}
.contact-span{
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}
.team-box{
    box-shadow: 1px 1px 5px 3px #ddd;
}
.team-name{
    color: #000;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
}
.team-span{
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #000;
}
.pdf-title {
    color: #000;
    font-weight: 600;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
}

.pdf-button {
    display: inline-block;
    height: 40px;
    background: #000;
    line-height: 40px;
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 0px 10px;
    font-family: 'Poppins', sans-serif;
}

.header-top p {
    font-family: 'Poppins', sans-serif;
    position: relative;
    line-height: 1.8em;
    font-size: 15px;
    color: #000;
    margin-bottom: 0;
}

.title-name{
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 700;
}
.contact-section span{
    display: block;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    padding-top: 10px;
    font-weight: 400;
        line-height: 50px;
    padding-bottom: 10px;
}
.side-whatsapp-buttons {
    display: block;
    position: fixed;
    z-index: 99999;
    right: 25px;
    letter-spacing: 2px;
    bottom: 60px;
}

.side-whatsapp-buttons img{
    border-radius: 50%;
    height: 50px;
}

.team-section img{
    height: 250px;
    object-fit: contain;
}

.resource-content-div{
    box-shadow: 0px 0px 10px 5px #ddd;
    background: #fff;
}
.resource-content h4{
    font-size: 19px;
    font-weight: 700;
    line-height: 25px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    color: #00287a;
    padding-bottom: 10px;
}
.testimonial-top img{
    height: 110px;
}

.marque-box {
    background: #0e0e0e0d;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.8px;
}

.bread-box{
    background: #10003a94;
    padding: 15px 20px;
    border-radius: 0px 0px 15px 15px;
}
.bread-header h4{
    background: #23007de0;
    text-align: center;
    color: #fff;
    font-weight: 600;
    padding: 10px;
    border-radius: 15px 15px 0px 0px;
    font-size: 20px;
}

.btn-info{
    border-radius: 0;
    font-weight: 400;
    background: #23007d;
    border: #23007d;
}