/*
@File: Xlogistics Template Style

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

*******************************************
*******************************************

** - Default CSS
** - Navbar CSS
** - Banner CSS
** - Search Overlay CSS
** - Feature CSS
** - SERVICIOS CSS
** - About CSS
** - Work CSS
** - Client CSS
** - Team CSS
** - Logo CSS
** - Footer CSS
** - Copyright CSS
** - Pricing CSS
** - Video CSS
** - Contact CSS
** - Map CSS
** - Testimonial CSS
** - Common Form 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");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Catamaran:wght@400;500;600;700&display=swap");
@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");
:root {
    --common-font: 'Catamaran', sans-serif;
    --heading-font: 'Lato', sans-serif;
    --transition: .5s all ease;
    --all-size: 16px;
    --white-color: #ffffff;
    --grey-color: #555555;
    --black-color: #1a1a1a;
    --filterone: invert(28%) sepia(97%) saturate(1686%) hue-rotate(331deg) brightness(89%) contrast(94%);
    --filtertwo: invert(28%) sepia(97%) saturate(1686%) hue-rotate(331deg) brightness(89%) contrast(94%);
    --whitefilter: brightness(0) invert(1);
    --red-color: #ff0000;
    --light-red-color: #ff0000;
    --yellow: #f3941d;
    --facebook: #4267b2;
    --linkedin: #3666c2;
    --twitter: #4ca1f3;
}


/*----- Default CSS -----*/

/*preloader css*/

.loader_bg{
    position: fixed;
    z-index: 999999;
    background: #fff;
    width: 100%;
    height: 1100vh;
  }
  

  .loader{
	width: 100px;
	height: 100px;
	top: calc(50vh - 50px);
	left: calc(50vw - 50px);
	display: flex;
	position: absolute;
	justify-content: center;
	align-items: center;
}

.loader::before{
	content:'';
	height: 100px;
	width: 100px;
	background: transparent;
	border-radius: 50px;
	border: 20px ridge;
	border-width: 30px;
	border-color: var(--red-color) var(--facebook) var(--red-color) var(--facebook);
	animation: load 1s infinite;
}

  
  @keyframes load{
      50%{
          transform: rotatez(180deg);
      }
      100%{
          transform: rotatez(360deg);
      }
  }
html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: var(--black-color);
    font-weight: 700;
}
h4{
    font-size: 20px;
}
.line-design {
    border: 2px solid rgb(211, 208, 208);
}

p {
    line-height: 1.8;
}

a {
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.set-width {
    width: 75%;
}

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

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

.ptb-30 {
    padding-top: 30px;
}

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

.pto-50 {
    padding-top: 100px;
    padding-bottom: 50px;
}

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

.pt-50-all {
    padding: 5% 0 5% 0;
}

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

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

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

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

.pr-50 {
    padding-right: 20%;
}

.pd-rl {
    padding: 0 50px 0 50px;
}

.pl-50 {
    padding-right: 20%;
}

.mto-40 {
    margin-top: 50px;
}

button:focus {
    outline: 0;
}

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

.mg-top-bottom-30 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.mg-top-30 {
    margin-top: 30px;
}

.mrb-20 {
    margin-bottom: 20px;
}

.mrb-30 {
    margin-bottom: 50px;
}

.heading-set {
    padding-top: 50px;
    padding-bottom: 20px;
}

.heading-set-two {
    padding-top: 50px;
    padding-bottom: 30px;
}


/*----- End Default CSS -----*/


/*----- Navbar CSS -----*/

.main-nav {
    padding-top: 0;
    padding-bottom: 0;
    background: var(--black-color);
    opacity: .95;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

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

.main-nav nav {
    padding: 0;
}

.main-nav nav .navbar-brand {
    background-color: #0c1239;
    display: inline-block;
    padding: 22px 60px;
}

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

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

.main-nav nav .navbar-nav .nav-item a {
    color: var(--white-color);
    font-weight: 500;
    text-transform: capitalize;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.main-nav.menu-shrink .navbar-brand {
    background-color: #0c1239;
    display: inline-block;
    padding: 17px 60px;
}

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

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

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

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

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

.side-nav ul li .call i {
    position: absolute;
    top: 8px;
    left: 0;
    color: var(--white-color);
    font-size: 35px;
}

.side-nav ul li .call span {
    display: block;
    color: var(--red-color);
    margin-bottom: 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal-body {
    padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#myModalRight {
    z-index: 99999;
}

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

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

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

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

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

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

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

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

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

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

.main-nav.two {
    background-color: #0c1239;
    opacity: 1;
}

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

.main-nav.two nav .navbar-nav .nav-item a {
    margin-left: 30px;
    color: var(--white-color);
}

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

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

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

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

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

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

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

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

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

.main-nav.three {
}


/*----- End Navbar CSS -----*/

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #301d44;
    font-weight: 600;
}

a {
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

a:hover {
    text-decoration: none;
}

button:focus {
    outline: 0;
}

p {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #6c6377;
}

p:last-child {
    margin-bottom: 0;
}

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

.blp-150 {
    padding-top: 150px;
    padding-bottom: 150px;
}

.plr-50 {
    padding-left: 5%;
    padding-right: 5%;
}

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

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

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

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

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

.default-btn-one {
    color: var(--white-color);
    display: inline-block;
    padding: 15px 30px;
    border-radius: 2px;
    border: 1px solid var(--red-color);
}

.default-btn-one a {
    color: var(--white-color);
    display: inline-block;
}

.default-btn-one:hover {
    background: var(--red-color);
    border: 1px solid var(--red-color);
    color: var(--white-color);
}

.default-btn-one a:hover {
    color: var(--white-color);
}

.default-btn-two {
    border: 1px solid var(--white-color);
    display: inline-block;
    color: var(--white-color);
    padding: 15px 30px;
    border-radius: 2px;
}

.default-btn-two a {
    display: inline-block;
    color: var(--white-color);
}

.default-btn-two:hover {
    color: var(--white-color);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    max-width: 630px;
    margin-left: auto;
    margin-right: auto;
}

.section-title span {
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
    color: #f21860;
    line-height: 1;
}

.section-title h2 {
    font-size: 38px;
    line-height: 1.3;
}

.bg-f9f9f9 {
    background-color: var(--white-color);
}


/*================================================
Search Overlay CSS
=================================================*/

.search-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.search-overlay .search-overlay-layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.search-overlay .search-overlay-layer:nth-child(1) {
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.search-overlay .search-overlay-layer:nth-child(2) {
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transition: all 0.3s ease-in-out 0.3s;
    transition: all 0.3s ease-in-out 0.3s;
}

.search-overlay .search-overlay-layer:nth-child(3) {
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.9s ease-in-out 0.6s;
    transition: all 0.9s ease-in-out 0.6s;
}

.search-overlay .search-overlay-close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 50px;
    z-index: 2;
    text-align: center;
    cursor: pointer;
    padding: 10px;
    -webkit-transition: all 0.9s ease-in-out 1.5s;
    transition: all 0.9s ease-in-out 1.5s;
    opacity: 0;
    visibility: hidden;
}

.search-overlay .search-overlay-close .search-overlay-close-line {
    width: 100%;
    height: 3px;
    float: left;
    margin-bottom: 5px;
    background-color: var(--white-color);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search-overlay .search-overlay-close .search-overlay-close-line:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.search-overlay .search-overlay-close .search-overlay-close-line:nth-child(2) {
    margin-top: -7px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.search-overlay .search-overlay-close:hover .search-overlay-close-line {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.search-overlay .search-overlay-form {
    -webkit-transition: all 0.9s ease-in-out 1.4s;
    transition: all 0.9s ease-in-out 1.4s;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    z-index: 2;
    max-width: 500px;
    width: 100%;
    padding: 0 16px;
}

.search-overlay .search-overlay-form form {
    position: relative;
}

.search-overlay .search-overlay-form form .input-search {
    display: block;
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 30px;
    color: #301d44;
    padding: 3px 0 0 25px;
}

.search-overlay .search-overlay-form form .input-search::-webkit-input-placeholder {
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    letter-spacing: .5px;
    color: #301d44;
}

.search-overlay .search-overlay-form form .input-search:-ms-input-placeholder {
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    letter-spacing: .5px;
    color: #301d44;
}

.search-overlay .search-overlay-form form .input-search::-ms-input-placeholder {
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    letter-spacing: .5px;
    color: #301d44;
}

.search-overlay .search-overlay-form form .input-search::placeholder {
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    letter-spacing: .5px;
    color: #301d44;
}

.search-overlay .search-overlay-form form .input-search:focus::-webkit-input-placeholder {
    color: transparent;
}

.search-overlay .search-overlay-form form .input-search:focus:-ms-input-placeholder {
    color: transparent;
}

.search-overlay .search-overlay-form form .input-search:focus::-ms-input-placeholder {
    color: transparent;
}

.search-overlay .search-overlay-form form .input-search:focus::placeholder {
    color: transparent;
}

.search-overlay .search-overlay-form form button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 50px;
    color: var(--white-color);
    height: 50px;
    border-radius: 50%;
    background-color: #f7941d;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    border: none;
    font-size: 20px;
    line-height: 45px;
}

.search-overlay .search-overlay-form form button:hover {
    background-color: #301d44;
    color: var(--white-color);
}

.search-overlay.search-overlay-active.search-overlay {
    opacity: 1;
    visibility: visible;
}

.search-overlay.search-overlay-active.search-overlay .search-overlay-layer {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.search-overlay.search-overlay-active.search-overlay .search-overlay-close {
    opacity: 1;
    visibility: visible;
}

.search-overlay.search-overlay-active.search-overlay .search-overlay-form {
    opacity: 1;
    visibility: visible;
}


/*--------------------------------------------------------------------------------------*/

a {
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

a:hover {
    text-decoration: none;
}

button:focus {
    outline: 0;
}

p {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #6c6377;
}

p:last-child {
    margin-bottom: 0;
}

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

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

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

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

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

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

.default-btn-one {
    background-color: var(--red-color);
    color: #ffffff;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 2px;
    border: 1px solid var(--red-color);
}

.default-btn-one:hover {
    background: var(--light-red-color)!important;
    border: 1px solid var(--red-color);
    color: #ffffff;
}

.default-btn-two {
    border: 1px solid var(--red-color);
    display: inline-block;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 2px;
    background-color: var(--red-color)!important;
}

.default-btn-two:hover {
    background: var(--light-red-color)!important;
    border: 1px solid var(--red-color);
    color: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    max-width: 630px;
    margin-left: auto;
    margin-right: auto;
}

.section-title span {
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
    color: #f21860;
    line-height: 1;
}

.section-title h2 {
    font-size: 38px;
    line-height: 1.3;
}

.bg-f9f9f9 {
    background-color: #f9f9f9;
}


/*================================================
Hero Slider Area
=================================================*/

.hero-slider {
    position: relative;
}

.hero-slider .hero-slider-item {
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 830px;
    position: relative;
}

.hero-slider .hero-slider-item::before {
    content: '';
    position: absolute;
    background: #301d44;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .6;
}

.hero-slider .hero-slider-item.item-bg1 {
    background-image: url("../images/hero-slider-hero-slider1.jpg");
}

.hero-slider .hero-slider-item.item-bg2 {
    background-image: url("../images/hero-slider-hero-slider2.jpg");
}

.hero-slider .hero-slider-item.item-bg3 {
    background-image: url("../images/hero-slider-hero-slider3.jpg");
}

.hero-slider .banner-content {
    position: relative;
    max-width: 720px;
}

.hero-slider .banner-content span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-slider .banner-content h1 {
    color: #ffffff;
    font-size: 70px;
    margin-bottom: 15px;
}

.hero-slider .banner-content p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-slider.owl-theme .owl-nav {
    margin: 0;
}
.client-carousel{
    padding-top: 100px;
    padding-bottom: 70px;
}
.hero-slider.owl-theme .owl-nav .owl-prev,
.hero-slider.owl-theme .owl-nav .owl-next {
    position: absolute;
    left: 15px;
    height: 50px;
    width: 40px;
    text-align: center;
    top: 50%;
    font-size: 40px;
    line-height: 1;
    color: #f3f2f3;
    margin: -30px 0 0;
}

.hero-slider.owl-theme .owl-nav .owl-prev:hover,
.hero-slider.owl-theme .owl-nav .owl-next:hover {
    background-color: #301d44;
}

.hero-slider.owl-theme .owl-nav .owl-next {
    left: auto;
    right: 15px;
}


/*================================================
Hero Contact Area
=================================================*/

.contact-area {
    position: relative;
    z-index: 1;
}

.contact-area.mb-85 {
    bottom: 85px;
}

.contact-area .contact-content {
    background: var(--red-color);
    border-radius: 5px;
    padding: 50px 30px 20px;
}

.contact-area .contact-content .contact-card {
    padding-left: 55px;
    position: relative;
    margin-bottom: 30px;
}

.contact-area .contact-content .contact-card i {
    background: #ffffff;
    color: var(--red-color);
    font-size: 30px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
}

.contact-area .contact-content .contact-card i:hover {
    background: #ffffff;
    color: var(--light-red-color);
    font-size: 40px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
}

.contact-area .contact-content .contact-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-area .contact-content .contact-card p {
    font-size: 14px;
    margin-bottom: 0;
    color: #ffffff;
}

.contact-area .contact-content .contact-card p a {
    color: #ffffff;
}


/*================================================
Choose Area
=================================================*/

.choose-area {
    position: relative;
}

.choose-area .choose-contant {
    padding: 15px 20px;
    margin-bottom: 30px;
    -webkit-box-shadow: 0px -1px 20px 0px #f3efef;
    box-shadow: 0px -1px 20px 0px #f3efef;
    border-radius: 5px;
}

.choose-area .choose-contant:last-child {
    margin-bottom: 0;
}

.choose-area .choose-contant .choose-card {
    padding-left: 100px;
    position: relative;
}

.choose-area .choose-contant .choose-card i {
    background: var(--red-color);
    color: var(--white-color);
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 50px;
    border-radius: 10px;
    position: absolute;
    left: 0;
}
.choose-area .choose-contant .choose-card h3 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}

.choose-area .choose-contant .choose-card p {
    font-size: 14px;
}

.choose-area .choose-text {
    position: relative;
    padding-left: 20px;
}

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

.choose-area .choose-text .default-btn-one {
    -webkit-box-shadow: 0px -1px 20px 0px #f3efef;
    box-shadow: 0px -1px 20px 0px #f3efef;
    margin-top: 20px;
}

.choose-area .choose-text .shape-image {
    position: absolute;
    right: 0;
    bottom: -75px;
}

.choose-area .choose-text .shape-image img {
    opacity: .2;
}


/*================================================
Transportation Area
=================================================*/

.transportation-area {
    background: var(--red-color);
    position: relative;
}

.transportation-area .transportation-form {
    max-width: 570px;
    margin-left: auto;
    padding-right: 100px;
    padding-bottom: 50px;
}

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

.transportation-area .transportation-form .section-title span {
    color: var(--black-color);
}

.transportation-area .transportation-form .section-title h2 {
    color: var(--black-color);
    font-size: 30px;
}

.transportation-area .transportation-form .transportation-shape {
    position: absolute;
    top: 40px;
    left: 5px;
}

.transportation-area .transportation-form .form-control {
    height: auto;
    padding: 15px 0;
    background-color: transparent;
    border-bottom: 1px solid var(--light-red-color);
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--black-color)!important;
}

.transportation-area .transportation-form .form-control:hover {
    height: auto;
    padding: 15px 0;
    background-color: transparent;
    border-bottom: 2px solid var(--red-color)!important;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.transportation-area .transportation-form .form-control:hover {
    border-bottom: 1px solid var(--red-color);
}

.transportation-area .transportation-form .form-control::-webkit-input-placeholder {
    color: var(--black-color);
}

.transportation-area .transportation-form .form-control:-ms-input-placeholder {
    color: var(--black-color);
}

.transportation-area .transportation-form .form-control::-ms-input-placeholder {
    color: var(--black-color);
}

.transportation-area .transportation-form .form-control::placeholder {
    color: var(--black-color);
}

.transportation-area .transportation-form .mb-30 {
    margin-bottom: 45px;
}

.transportation-area .transportation-form .form-btn {
    margin-bottom: 20px;
}

.transportation-area .transportation-form .form-btn .default-btn-one {
    margin-bottom: 20px;
    border: none;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.transportation-area .transportation-form .form-btn .default-btn-one:hover {
    background: #301d44;
}

.transportation-area .transportation-form .form-btn .default-btn-two {
    margin-bottom: 20px;
    background: none;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.transportation-area .transportation-form .form-btn .default-btn-two:hover {
    border: 1px solid #301d44;
    background: #301d44;
}

.transportation-area .transportation-form h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
}

.transportation-area .transportation-form h3 span {
    color: #f21860;
}

.popup-video {
    background-size: cover;
    background-position: center center;
    position: relative;
    height: 100%;
}

.popup-video::before {
    background: #301d44;
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: .6;
    position: absolute;
}

.popup-video.video-bg {
    background-image: url("../images/popup-video-bg.jpg");
}

.popup-video .video-btn {
    position: relative;
    text-align: center;
}

.popup-video .video-btn a {
    background: var(--white-color);
    color: var(--light-red-color);
    height: 90px;
    width: 90px;
    position: absolute;
    text-align: center;
    margin: -50px 0 0 -40px;
    border-radius: 100px;
    z-index: 1;
    font-size: 55px;
    padding-left: 8px;
    line-height: 90px;
}

.popup-video .video-btn a i {
    position: relative;
    top: 9px;
}

.popup-video .video-btn a .ripple {
    background: var(--red-color);
    position: absolute;
    width: 150px;
    height: 150px;
    z-index: -1;
    left: 50%;
    top: 60%;
    opacity: 0;
    margin: -85px 0 0 -75px;
    border-radius: 100px;
    -webkit-animation: ripple 1.8s infinite;
    animation: ripple 1.8s infinite;
}

.popup-video .video-btn a .ripple:nth-child(2) {
    animation-delay: .3s;
    -webkit-animation-delay: .3s;
}

.popup-video .video-btn a .ripple:nth-child(3) {
    animation-delay: .6s;
    -webkit-animation-delay: .6s;
}

@-webkit-keyframes ripple {
    0% {
        opacity: 1;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ripple {
    0% {
        opacity: 1;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


/*================================================
Site footer
=================================================*/

.site-footer {
    background-color: #0c1239;
    padding-top: 80px;
    padding-bottom: 60px;
    font-size: 15px;
    line-height: 24px;
    color: #fff!important;
}
.p-5prc{
    padding: 5%;
}

.footer-logo-txt p{
    margin-top: 30px;
    color: white;
    line-height: 30px;
    font-size: 16px;
}
.footer-logo-div{
    padding: 5%;
}
.subsbtn {
    padding: 7px 30px!important;
}

.site-footer hr {
    border-top-color: #bbb;
    opacity: 0.5
}

.site-footer hr.small {
    margin: 20px 0
}

.site-footer h6 {
    color: var(--white-color);
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 2px
}

.site-footer a {
    color: #737373;
}

.site-footer a:hover {
    color: #3366cc;
    text-decoration: none;
}

.footer-links {
    padding-left: 0;
    list-style: none
}

.footer-links li {
    display: block
}

.footer-links a {
    color: #ffff;
    line-height: 32px;
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
    color: #f00;
    text-decoration: none;
}

.footer-links.inline li {
    display: inline-block
}

.site-footer .social-icons {
    text-align: right
}

.site-footer .social-icons a {
    width: 40px;
    height: 40px;
    line-height: 43px;
    margin-right: 6px;
    border-radius: 100%;
    background-color: #fff;
}

.copyright-text {
    margin: 0
}

.subs button:hover {
    background-color: var(--light-red-color);
    color: #fff;
}

.social-icons {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    float: left;
}

.social-icons li {
    display: inline-block;
    margin-bottom: 4px
}

.social-icons li.title {
    margin-right: 15px;
    text-transform: uppercase;
    color: #96a2b2;
    font-weight: 700;
    font-size: 13px
}

.social-icons a {
    background-color: #eceeef;
    color: #f00;
    font-size: 16px;
    display: inline-block;
    line-height: 44px;
    width: 44px;
    height: 44px;
    text-align: center;
    margin-right: 8px;
    border-radius: 100%;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
    color: #fff;
    background-color: #29aafe
}

.social-icons.size-sm a {
    line-height: 34px;
    height: 34px;
    width: 34px;
    font-size: 14px
}

.social-icons a.facebook:hover {
    background-color: #3b5998
}

.social-icons a.twitter:hover {
    background-color: #00aced
}

.social-icons a.linkedin:hover {
    background-color: #007bb6
}

.social-icons a.dribbble:hover {
    background-color: #ea4c89
}

.image-set {
    width: 40%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.mr-30 {
    margin-bottom: 30px!important;
}

.footer-pd {
    padding: 20px;
}

.set-border {
    border-radius: 35px;
}

.input-set {
    border-radius: 0px;
    border: #737373;
    color: var(--red-color)!important;
}

.cte {
    width: 80%;
    margin: 0 10% 0 10%;
}
.cte ul li a {
    padding-left: 10%;
    padding-right: 10%;
    width: 80%;
}
.ftr-last-row{
    padding-left:20px;
    padding-right: 50px;
    background-color: #0a0e29;
}
.privacy {
    vertical-align: middle;
}

.abc {
    vertical-align: middle;
}
.terms p{
    color: #bbbbbb;
}
.terms a {
    color: #d1d1d1;
    font-size: 16px;
    display: inline-block;
    line-height: 44px;
}

.terms2 a {
    color: #cccccc;
    font-size: 16px;
    display: inline-block;
    line-height: 44px;
}

.terms a:hover {
    color: var(--red-color);
}

.ppanchar:hover {
    color: var(--red-color);
}

.terms {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    float: right;
    padding-left: 10px;
    padding-right: 10px;
}

.icon-align {
    text-align: left!important;
}


/*================================================
Feature section
=================================================*/

.section-wrapper {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: hidden
}

.bg--lgray {
    background: #f3f6f5
}

.align-items-end {
    -ms-flex-align: end!important;
    -webkit-box-align: end!important;
    align-items: flex-end!important
}

.bottom-70 {
    margin-bottom: 50px!important
}

.heading {
    position: relative
}

.front-blog .heading {
    margin-bottom: 33px
}
.heading__title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 0;
    z-index: 1;
    position: relative
}

.color--red {
    color: var(--red-color)!important
}

.heading__layout {
    display: none;
    color: transparent;
    font-size: 85px;
    line-height: .85;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    letter-spacing: -.020em;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #ebebeb;
    position: absolute;
    left: 20px;
    top: -30px;
    z-index: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.heading--center {
    text-align: center;
    width: 100%
}

.heading--center .heading__layout {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 5px;
    top: auto
}

.layout--lgray {
    -webkit-text-stroke-color: #d6d6d6
}

.icon-item {
    margin-bottom: 50px
}

.icon-item .icon {
    color: #003d90;
    font-size: 60px
}

.icon-item__title {
    margin-bottom: 0
}

.icon-item__text {
    margin-top: 16px
}

.icon-item__text:last-of-type {
    font-size: 16px;
    color: black;
    margin-bottom: 0;
}

.icon-item__img img {
    max-height: 70px;
    width: auto
}

.icon-item .icon {
    color: #003d90;
    font-size: 60px
}

.icon-item__img {
    margin-bottom: 24px
}

.icon-item .icon {
    color: var(--red-color)!important;
    font-size: 60px;
}


/*---Icon size change--*/

.icon-item .icon:hover {
    color: var(--light-red-color)!important;
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}


/*================================================
Pricing Area
=================================================*/

.pricing-plan__bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(100% - 50px);
    height: auto
}

.pricing-plan__price {
    line-height: 45px;
    font-weight: 700;
    letter-spacing: -.050em;
    margin: 41px 0 21px 0
}

.pricing-plan__price span {
    display: inline-block
}

.pricing-plan__price span:first-of-type {
    font-size: 80px;
    margin-right: 10px
}

.pricing-plan__price span:last-of-type {
    font-size: 30px;
    text-transform: uppercase
}

.pricing-plan .button {
    position: relative;
    z-index: 2;
    margin-top: 45px
}

.pricing-plan--bordered {
    background: #e2e2e2;
    padding: 1px;
    -webkit-clip-path: polygon(90% 0, 100% 6%, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(90% 0, 100% 6%, 100% 100%, 0 100%, 0 0)
}

.pricing-plan--bordered .pricing-plan__inner {
    padding: 33px 30px 50px 30px;
    background: #fff;
    -webkit-clip-path: polygon(90% 0, 100% 6%, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(90% 0, 100% 6%, 100% 100%, 0 100%, 0 0)
}

.pricing-plan--blue {
    color: #fff;
    -webkit-clip-path: polygon(90% 0, 100% 6%, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(90% 0, 100% 6%, 100% 100%, 0 100%, 0 0);
    background: var(--red-color)!important;
}

.pricing-plan--blue .pricing-plan__inner {
    padding: 33px 30px 50px 30px
}

.pricing-plan--small {
    padding: 0
}

.pricing-plan--small .pricing-plan__price {
    margin: 24px 0 10px 0
}

.pricing-plan--small .pricing-plan__price span:first-of-type {
    font-size: 50px
}

.pricing-plan--small .button {
    margin-top: 35px
}

.pricing-plan--small .pricing-plan__inner {
    padding: 33px 30px 40px 30px
}

.pricing-table {
    padding: 20px 15px 30px 15px;
    border-top: 1px solid #e2e2e2;
    text-align: center
}

.pricing-table__title {
    margin-bottom: 10px
}

.pricing-table__price {
    letter-spacing: -.050em;
    font-weight: 700;
    margin: 5px 0
}

.pricing-table__price span {
    display: inline-block
}

.pricing-table__price span:first-of-type {
    font-size: 36px;
    margin-right: 10px
}

.pricing-table__price span:last-of-type {
    font-size: 20px;
    text-transform: uppercase
}

.pricing-table--blue {
    color: #fff;
    background: #003d90;
    border: none
}

.pricing-plan {
    position: relative;
    overflow: hidden;
    margin-bottom: 50px
}

.list--check {
    padding-left: 30px
}

.list--check .list__item {
    position: relative;
    line-height: 32px
}

.list--check .list__item:not(:last-of-type) {
    margin-bottom: 8px
}

.list--check .list__item::before {
    content: "";
    display: block;
    height: 10px;
    width: 6px;
    border-left: 2px solid var(--red-color)!important;
    border-top: 2px solid var(--red-color)!important;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    position: absolute;
    top: 10px;
    left: -23px;
    z-index: 1
}

.list--check .list__item::after {
    content: "";
    display: block;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #f3f6f5;
    position: absolute;
    top: 6px;
    left: -30px
}

.list--check .list__item.item--disabled {
    opacity: .7
}

.pricing-plan .list--check .list__item::after {
    display: none
}

.pricing-plan .list--check .list__item::before {
    left: -18px
}

.pricing-plan .list--check {
    padding-left: 22px
}

.pricing-plan .list--check {
    padding-left: 22px
}

.list--reset {
    padding: 0;
    margin: 0;
    list-style: none
}

.button {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.button--filled {
    color: var(--white-color);
    font-size: 14px;
    background: var(--red-color)!important;
    height: 70px;
    line-height: 70px;
    min-width: 210px;
    padding: 0 30px
}

.button--filled:hover {
    color: #fff;
    background: #21bb9f
}

.button--white {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #fff;
    height: 50px;
    line-height: 46px;
    min-width: 170px;
    text-align: left;
    border: 2px solid #fff;
    border-radius: 0 0 20px 0;
    padding: 0 20px
}

.button--white span {
    display: inline-block;
    min-width: 95px
}

.button--white .icon {
    font-size: 18px
}

.button--white:hover {
    color: #414a53;
    background: #fff
}

.button--green {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #414a53;
    height: 50px;
    line-height: 46px;
    min-width: 170px;
    text-align: left;
    border: 2px solid var(--red-color)!important;
    border-radius: 0 0 20px 0;
    padding: 0 20px
}

.button--green span {
    display: inline-block;
    min-width: 95px
}

.button--green .icon {
    font-size: 18px
}

.button--green:hover {
    color: #fff;
    background: var(--red-color)!important;
}


/*================================================
Clients area 
=================================================*/

.logos-slider .slick-list {
    margin: 0 -15px
}

.logos-slider .slick-slide {
    margin: 0 15px
}

.logos-slider .slick-dots {
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    margin-top: 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.logos-slider__item {
    position: relative;
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 150px
}

.logos-slider__item::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    -o-transition: transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s
}

.logos-slider__item:hover::before {
    -webkit-transform: scale(.86);
    -ms-transform: scale(.86);
    transform: scale(.86)
}

.logos-slider__dots {
    text-align: center
}

.logos-slider__dots .slick-dots {
    margin-top: 40px
}

.logos-slider__item img {
    position: relative;
    z-index: 1;
    width: 80%;
    max-width: 150px;
    max-height: 110px;
    height: auto;
    -webkit-transition: -webkit-transform .8s;
    transition: -webkit-transform .8s;
    -o-transition: transform .8s;
    transition: transform .8s;
    transition: transform .8s, -webkit-transform .8s
}

.logos-slider--style-2 .logos-slider__item {
    border: 1px solid #e2e2e2
}

#client {
    padding-bottom: 5%;
}

.client-logo {
    padding: 5%Impoortant;
}

.set-mg {
    margin-left: 5%;
    margin-right: 5%;
}


/*================================================
Service area
=================================================*/
#Services{
    padding-top: 100px;
    padding-bottom: 100px;
}
.centered {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.p-color {
    background-color: var(--red-color);
    color: white;
}

.service-btn button:hover {
    background-color: var(--light-red-color);
    color: #fff;
}
.services-img{
    margin-bottom: 30px;
}
.set-cont {
    width: 20%;
    filter: var(--whitefilter)
}

.set-cont:hover {
    width: 30%;
    filter: var(--filtertwo)!important;
}

.centered .two {
    color: var(--white-color)!important;
}

.centered .two:hover {
    color: var(--red-color) !important;
}

.safe-text {
    color: #000;
    font-size: xx-large;
    font-weight: bolder;
}

.feature-icon {
    width: 20%;
}

.b-filter {
    filter: var(--filterone);
}


/*================================================
Testimonials Area
=================================================*/

#flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    min-height: 400px;
    height: 110vh;
    max-width: 100%;
    margin: auto;
    background-color: #fff;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
}

#left-zone {
    height: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

#left-zone .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin: auto;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.item input {
    display: none;
}

label {
    display: block;
    opacity: 0.5;
    height: 50px;
    text-align: center;
    line-height: 50px;
    position: relative;
}

label:hover {
    opacity: 0.75;
    cursor: pointer;
}

.content-test {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    height: 50%;
    width: 100%;
    -webkit-transition: 0.5s ease-out;
    -o-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    pointer-events: none;
}

.content-test p {
    max-width: 50%;
    text-align: center;
}

#right-zone {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    height: 50%;
}

input:checked~.content-test {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    -o-transition: transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
    opacity: 1;
}


/* If the screen size is 480px or less */

.content_testimonial-1 .picto {
    height: 100px;
    width: 100px;
    background-image: url("https://i.postimg.cc/RFBHkG46/diamond-Pest-Logo-small.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.content_testimonial-1 h1 {
    color: #d64541;
    text-align: center;
}

.content_testimonial-2 .picto {
    height: 100px;
    width: 100px;
    background-image: url("https://i.postimg.cc/bsqXXKCV/a-Plus-Handyman-Logo.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.content_testimonial-2 h1 {
    color: #f5d76e;
}

.content_testimonial-3 .picto {
    height: 100px;
    width: 100px;
    background-image: url("https://i.postimg.cc/zV7sq04z/mod-Movers-Logo.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.content_testimonial-3 h1 {
    color: #00b16a;
}

.content_testimonial-4 .picto {
    height: 100px;
    width: 100px;
    background-image: url("https://i.postimg.cc/4Y3rypTz/ak-Pest-Control-Logo.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.content_testimonial-4 h1 {
    color: #f27935;
}

.content-test h1:first-letter {
    text-transform: uppercase;
}

input:checked~label {
    opacity: 1;
    -webkit-animation: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

input:checked~label.label_testimonial-1 {
    color: #d64541;
    border-right: solid 4px #d64541;
}

input:checked~label.label_testimonial-2 {
    color: #f5d76e;
    border-right: solid 4px #f5d76e;
}

input:checked~label.label_testimonial-3 {
    color: #00b16a;
    border-right: solid 4px #00b16a;
}

input:checked~label.label_testimonial-4 {
    color: #f27935;
    border-right: solid 4px #f27935;
}

label.label_testimonial-1:before {
    content: " ";
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: 15px;
    background-image: url("https://i.postimg.cc/RFBHkG46/diamond-Pest-Logo-small.jpg");
    background-position: center;
    background-size: 75% 75%;
    background-repeat: no-repeat;
    border-radius: 50%;
}

label.label_testimonial-2:before {
    content: " ";
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: 15px;
    background-image: url("https://i.postimg.cc/bsqXXKCV/a-Plus-Handyman-Logo.jpg");
    background-position: center;
    background-size: 75% 75%;
    border-radius: 50%;
    background-repeat: no-repeat;
}

label.label_testimonial-3:before {
    content: " ";
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: 15px;
    background-image: url("https://i.postimg.cc/zV7sq04z/mod-Movers-Logo.jpg");
    background-position: center;
    background-size: 75% 75%;
    background-repeat: no-repeat;
    border-radius: 50%;
}

label.label_testimonial-4:before {
    content: " ";
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: 15px;
    background-image: url("https://i.postimg.cc/4Y3rypTz/ak-Pest-Control-Logo.jpg");
    background-position: center;
    background-size: 75% 75%;
    background-repeat: no-repeat;
    border-radius: 50%;
}

label:first-letter {
    text-transform: uppercase;
}

.label_testimonial-1:hover {
    background-image: -webkit-gradient( linear, left top, right top, from(var(--white-color)), to(#d64541a3));
    background-image: -webkit-linear-gradient(left, var(--white-color), #d64541a3);
    background-image: -o-linear-gradient(left, var(--white-color), #d64541a3);
    background-image: linear-gradient(to right, var(--white-color), #d64541a3);
    font-size: 1.2rem;
    -webkit-transition: font-size 0.5s;
    -o-transition: font-size 0.5s;
    transition: font-size 0.5s;
}

.label_testimonial-2:hover {
    background-image: -webkit-gradient( linear, left top, right top, from(var(--white-color)), to(#f5d76e59));
    background-image: -webkit-linear-gradient(left, var(--white-color), #f5d76e59);
    background-image: -o-linear-gradient(left, var(--white-color), #f5d76e59);
    background-image: linear-gradient(to right, var(--white-color), #f5d76e59);
    font-size: 1.2rem;
    -webkit-transition: font-size 0.5s;
    -o-transition: font-size 0.5s;
    transition: font-size 0.5s;
}

.label_testimonial-3:hover {
    background-image: -webkit-gradient( linear, left top, right top, from(var(--white-color)), to(#00b16aa3));
    background-image: -webkit-linear-gradient(left, var(--white-color), #00b16aa3);
    background-image: -o-linear-gradient(left, var(--white-color), #00b16aa3);
    background-image: linear-gradient(to right, var(--white-color), #00b16aa3);
    font-size: 1.2rem;
    -webkit-transition: font-size 0.5s;
    -o-transition: font-size 0.5s;
    transition: font-size 0.5s;
}

.label_testimonial-4:hover {
    background-image: -webkit-gradient( linear, left top, right top, from(var(--white-color)), to(#f27935a3));
    background-image: -webkit-linear-gradient(left, var(--white-color), #f27935a3);
    background-image: -o-linear-gradient(left, var(--white-color), #f27935a3);
    background-image: linear-gradient(to right, var(--white-color), #f27935a3);
    font-size: 1.2rem;
    -webkit-transition: font-size 0.5s;
    -o-transition: font-size 0.5s;
    transition: font-size 0.5s;
}

p.testimonialState {
    margin-top: -5px;
    font-size: 0.8rem;
    font-style: italic;
    color: #808080d4;
}

p.testimonialFrom {
    margin-top: 5px;
    font-weight: bold;
    color: #33475c;
}


/*================================================
Teams Section
=================================================*/

.gray {
    color: #a5a5a5;
}
#team{
    padding-top: 100px;
    padding-bottom: 70px;
}
.team-member {
    margin-bottom: 30px;
    padding: 0;
}

.team-member figure {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.team-member figure img {
    min-width: 100%;
}

.team-member figcaption p {
    font-size: 16px;
}

.team-member figcaption ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-member figcaption ul {
    visibility: visible;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.team-member figcaption ul li {
    display: inline-block;
    padding: 10px;
}
.txt-fig{
    text-align: center;
    position: relative;
    top: 50%;
    padding: 0 10px;
    left: 50%;
    transform: translate(-50%, -50%);
}

figcaption ul li a i {
    color: var(--white-color);
}

.team-member h4 {
    margin: 10px 0 0;
    padding: 0;
}

.team-member figcaption {
    color: transparent;
    background-color: transparent;
    position: absolute;
    z-index: 996;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.team-member figure:hover figcaption {
    visibility: visible;
    color: var(--white-color);
    background: var(--red-color);
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.fb:hover:hover {
    color: var(--facebook);
}

.ln:hover {
    color: var(--linkedin);
}

.tw:hover {
    color: var(--twitter);
}

.team-member figure:hover figcaption ul li a:hover {
    color: rgba(49, 49, 49, .97);
}

.team-member figure img {
    -webkit-transform: scale(1) rotate(0) translateY(0);
    -moz-transform: scale(1) rotate(0) translateY(0);
    -o-transform: scale(1) rotate(0) translateY(0);
    -ms-transform: scale(1) rotate(0) translateY(0);
    transform: scale(1) rotate(0) translateY(0);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.team-member figure:hover img {
    -webkit-transform: scale(1.1) rotate(1deg) translateY(12px);
    -moz-transform: scale(1.1) rotate(1deg) translateY(12px);
    -o-transform: scale(1.1) rotate(1deg) translateY(12px);
    -ms-transform: scale(1.1) rotate(1deg) translateY(12px);
    transform: scale(1.1) rotate(1deg) translateY(12px);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}


/*================================================
Contact Area Used Transpotation Form
=================================================*/

.contact-links * {
    color: var(--red-color);
}

.contact-links * :hover {
    color: var(--light-red-color);
}

.map-width {
    width: 100%;
    height: 600px;
    border: 0;
}

.calling {
    font-size: 16px;
}


/*================================================
Blog page css
=================================================*/

.blog-page-cover-txt-color {
    color: var(--red-color);
    text-decoration: underline;
}
#blogssec{
    padding-top: 100px;
    padding-bottom: 100px;
}
.blogs_cover::before {
    background: #02448b80 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.info-blog {
    color: var(--white-color);
}

.info-blog a {
    color: var(--white-color);
}

.blogs_heading {
    text-align: center;
    margin-bottom: 50px;
}

.blogs_heading h2 {
    font-weight: bold;
}

.blog_share_details a {
    color: var(--red-color);
    text-decoration: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.blog-hover-decoration:hover {
    text-decoration: underline;
}

.blog_share_details p {
    color: #87868a;
}

.blog_share_details p a {
    font-weight: bold;
}
.bl_share_img img {
    width: 350px;
    height: 282px;
}

#blog_share_area h2,
h3 {
    font-weight: 600;
    line-height: 1.2em;
    color: #38373c;
    margin: 0;
    padding: 0;
}

#blog_share_area p {
    color: #87868a;
}

.hero-section-title {
    margin-bottom: 50px;
}

.hero-section-title h2 {
    font-weight: bold;
}

.two-blogs-row {
    margin-top: 9%;
}

.blog_share_box {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border: 1px solid #f1f1f1;
    padding: 10px;
}

.blog_share_box:hover {
    -webkit-box-shadow: 0 0px 50px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0px 50px rgba(0, 0, 0, 0.08);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3 ease;
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
}

.blog_share_box .bl_share_img {
    position: relative;
    width: 100%;
}

.blog_share_box .bl_share_img img {
    width: 100%;
    height: auto;
}

.bl_share_img .blog_date {
    display: inline-block;
    background: var(--white-color);
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: center;
    font-size: 14px;
    padding: 14px 10px 10px 10px;
    line-height: 16px;
    font-weight: 400;
}

.blog_share_details {
    padding: 35px 5px 35px 5px;
}

.blog_share_details .comment_author a {
    text-decoration: none;
}

.blog_share_details .comment_author {
    display: block;
    color: var(--red-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.blog_share_details h3 {
    margin-bottom: 20px;
}

.blog_share_details h3 a {
    color: #38373c;
    display: block;
}

.blog_share_details h3 a:hover {
    color: var(--light-red-color);
}

.blogs_button {
    text-align: center;
    margin-top: 50px;
}

.blogs_button .btn {
    background-color: #2e3e93;
    border: none;
    border-radius: 0%;
    padding: 1% 2%;
    text-align: center;
    font-size: 100%;
}

.blogs_button .btn a {
    color: white;
}

.blogs_button .btn:hover {
    background-color: var(--red-color);
}
.show-more a{
    margin-top: 30px;
    color: white;
}


/* #########  Blogs PAGINATION ###########*/

[data-pagination],
[data-pagination] *,
[data-pagination] *:before,
[data-pagination] *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-kerning: auto;
}

[data-pagination] {
    font-size: 8pt;
    line-height: 1;
    font-weight: 400;
    -webkit-text-size-adjust: 100%;
    margin: 1em auto;
    text-align: center;
    transition: font-size .2s ease-in-out;
}

[data-pagination] ul {
    list-style-type: none;
    display: inline;
    font-size: 100%;
    margin: 0;
    padding: .5em;
}

[data-pagination] ul li {
    display: inline-block;
    font-size: 100%;
    width: auto;
    border-radius: 3px;
}

[data-pagination]>a {
    font-size: 140%;
}

[data-pagination] a {
    color: #777;
    font-size: 100%;
    padding: .5em;
}

[data-pagination] a:focus,
[data-pagination] a:hover {
    color: var(--light-red-color);
}

[data-pagination] li.current a {
    color: #2e3e93;
}

[data-pagination] .disabled,
[data-pagination] [hidden],
[data-pagination] [disabled] {
    opacity: .5;
    pointer-events: none;
}


/*================================================
Blog detail page css
=================================================*/

.read_more_img {
    width: 100%;
}

.read_more_img img {
    width: 100%;
}

.read_more_area {
    padding: 20px;
    box-shadow: 2px 2px 5px 2px var(--red-color);
}

.read_more_datecomment {
    font-size: 95%;
}

.read_more_text h3 {
    color: var(--red-color);
    font-weight: bold;
    border-top: 1px solid;
    padding-top: 2%;
    border-color: #cfd2d5;
}

.read_more_comment {
    float: right;
}

.read_more_comment a {
    text-decoration: none;
    color: #6c757d;
}

.read_more_comment a:hover {
    color: var(--light-red-color);
}

.calender-comment {
    color: #6c757d;
}

.blockquote {
    margin-top: 3%;
    margin-bottom: 3%;
    margin-left: 5%;
    padding: 2% 4%;
    border-left: solid;
    border-color: var(--red-color);
}

.blockquote p {
    margin-bottom: 0%;
}

.social {
    margin-top: 3%;
}

.icons_list:hover {
    color: var(--light-red-color);
}

.list_head {
    font-size: large;
    font-weight: bold;
    background-color: white!important;
}

.social_tags_list {
    padding-left: 0px!important;
}

.social_tags {
    font-weight: bold;
    font-size: 80%!important;
    width: 100%;
}

.social_tags ul {
    list-style-type: none;
}

.social_tags li {
    display: inline-block;
    margin: 1%;
}

.social_tags li a {
    text-decoration: none;
    background-color: whitesmoke;
    padding: 2%;
    color: var(--red-color);
}

.social_icons {
    font-size: 90%!important;
    width: 100%;
}

.social_icons li {
    display: inline;
    padding: 1%;
    margin: 0%;
}

.social_icons_list a {
    color: var(--red-color);
}

.social_icons_list a:hover {
    color: var(--light-red-color);
}

.social_icons ul {
    list-style-type: none;
    text-align: right;
    margin-bottom: 0%;
    margin-right: 4%;
}

.comment_section h3 {
    color: var(--red-color);
}

.total_comments a {
    text-decoration: none;
    color: #6c757d;
}

#reply_comment {
    margin-left: 5%;
    background-color: #f5f3f5;
    padding: 3%;
    margin-top: 2%;
    margin-bottom: 6%;
}

.media-body h5 a {
    color: #6c757d;
    text-decoration: none;
}

.reply_button a {
    color: var(--red-color);
    font-size: 80%;
}

.comment_form .form-control {
    border-radius: 0%;
    margin-top: 2%;
}

.comment_form .high {
    height: 55px;
}

.high:focus {
    box-shadow: 0 0 10px var(--red-color);
}

.high2:focus {
    box-shadow: 0 0 10px var(--red-color);
}

.comment_form .btn {
    margin-top: 4%;
    background-color: var(--red-color);
    border: none;
    border-radius: 0%;
    padding: 1% 2%;
    color: white;
    text-align: center;
    font-size: 100%;
}

.comment_form .btn:hover {
    background-color: var(--light-red-color);
}

.comment_form h4 {
    color: var(--red-color);
}
.trm{
    border-left: 1px solid white;
    line-height: 14px!important;
    padding-left: 15px;
    margin-left: 15px;
}
.search_box .search {
    padding: 5% 5%;
    border-radius: 0%;
    border: none;
    height: 40px;
    width: 100%;
    outline: none;
    background-color: whitesmoke;
}

.search_icon {
    color: var(--red-color);
    position: absolute;
    top: 36px;
    right: 30px;
}

.categories ul {
    padding-left: 0%;
    list-style-type: none;
}

.categories span {
    float: right;
    color: var(--red-color);
}

.categories li a {
    text-decoration: none;
    font-weight: bold;
    color: var(--red-color);
}

.categories li {
    margin-top: 3%;
}

.popular_posts_linkdate {
    font-size: 80%;
}

.popular_posts_linkdate a {
    color: var(--red-color);
}

.popular_tags .tags a {
    text-decoration: none;
    color: var(--red-color);
    background-color: whitesmoke;
    padding: 8%;
}

.tags ul li {
    display: inline-block;
    margin: 3%;
}

.popular_tags h6 {
    font-weight: bold;
}
