*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Montserrat', sans-serif;
	/* overflow-x: hidden; */
}

html {
    overflow-x: hidden;
}


::-webkit-scrollbar {
width: 12px;
height: 12px;
}

::-webkit-scrollbar-track {
/* border: 1px solid #0f75bd; */
border-radius: 0px;
}

::-webkit-scrollbar-thumb {
   background: rgb(29 189 239);
    background: linear-gradient(180deg, rgb(29 189 239) 17%, rgb(242, 242, 242) 100%);
    border-radius: 0px;
    transition: all .4s ease-in-out;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

::-webkit-scrollbar-thumb:hover {
background: rgb(000,000,000);
background: linear-gradient(180deg, rgba(36,37,41,1) 60%, rgba(36,37,41,1) 100%);
}




        #preloader {
            width: 100%;
            height: 100%;
            position: fixed;
            top: 0;
            left: 0;
            background: white;
            z-index: 99999999;
        }


        .spinner {
            width: 80px;
            height: 80px;
            border: 0px solid #f3f3f3;
    		border-top: 5px solid #1dbdef;
            border-radius: 100%;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            animation: spin 1s infinite ease;
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }





a{
	transition: all .4s ease-in-out;
	text-decoration: none !important;
	line-height: 1.8;
}

p{
	font-size: 16px;
	line-height: 1.8;
}


.head h2 {
    font-size: 38px;
    color: #252525;
    font-weight: 800;
    margin-bottom: 0;
    padding-bottom: 80px;
    position: relative;
}

.head h2:after {
	content: '';
    background-image: url(../img/head-shape.png);
    height: 37px;
    width: 114px;
    position: absolute;
    background-repeat: no-repeat;
    left: 0;
    right: 0;
    bottom: 25px;
    margin: auto;
}

.head p {
    color: #252525;
}



/* HEADER START */

.custom-btn-class{
    background-color: transparent;
    border: none;
}
.custom-btn-class:hover {
    color: #fa9833;
    background-color: #ffffff00;
    border-color: #ffffff00;
}
.custom-item:focus, .custom-item:hover, .custom-item.active, .custom-item:active {
    color: #fff !important;
    text-decoration: none;
    background-color: #faa31f !important;
    padding: 14px;
    margin-left: 5px;
    border-radius: 20px;
}
.dropdown-menu {
    background-color: #fff0;
    border: 0px ;
   
}
.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show>.btn-secondary.dropdown-toggle {
    color: #fa9833;
    background-color: #ffffff00;
    border:none;
}

header .navbar-brand img {
    width: auto;
    height: 120px;
}

header .navbar-nav a {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    color: #ffffff !important;
    line-height: normal;
    padding-top: 0;
    padding-bottom: 0;
}

header .navbar-nav li.active a, header .navbar-nav li a:hover, header .navbar-nav button:hover a {
    color: #faa31a !important;
}

header nav ul {
    justify-content: flex-end;
    align-items: center;
    margin-right: unset !important;
    width: 100%;
}

header nav ul li {
    margin: 0 6px;
    padding: .5rem 0;
}

header nav ul li.b-trans {
    margin: 0 8px;
    padding: 0;
}

header nav ul li.b-trans a {
    padding: 10px 28px !important;
}

header .navbar-nav li.b-trans a{
	color: #fff !important;
}

/* HEADER END */



/* HOME BANNER START */

.home-banner {
 	background-image: url(../img/banner-bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding-top: 200px;
    padding-bottom: 65px;
    margin-top: -146px;
}

.home-banner:before {
    content: '';
    position: absolute;
    height: 500px;
    width: 500px;
    border: 1px solid #395c61;
    right: -90px;
    top: -190px;
    border-radius: 50%;

    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	animation: home-banner-circle 3s infinite;
}

@keyframes home-banner-circle {
	0% {
		box-shadow: 0 0 0 0 rgb(29 189 239 / 25%);
	}

	70% {

		box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}








/* .home-banner .left h2 {
    font-size: 62px;
    color: #fff;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: .5px;
} */

.home-banner .left h2 {
    font-size: 32px;
    color: #fff;
    font-weight: 800;
    line-height: 44px;
    letter-spacing: .5px;
}

.home-banner .left p {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    padding-top: 10px;
}

.home-banner .left {
    padding-top: 18%;
}


.b-trans:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #faa31a;
    z-index: 0;
    border-radius: 25px;
    border-top-right-radius: 0;
    transition: all .4s ease-in-out;
    transform: rotateX(90deg);
}

.b-trans:hover:before, .b-trans.active:before  {
    right: 0;
    top: 0;
    transform: rotateX(0deg);
}


.b-trans{
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.b-trans a, .b-trans button {
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 18px;
    font-size: 16px;
    border-radius: 25px;
    border-top-right-radius: 0;
    font-weight: 500;
    letter-spacing: 1px;
    display: inline-block;
    z-index: 11;
    position: relative;
    background-color: transparent;
}

.b-trans:hover a, .b-trans:hover button, .b-trans.active a, .b-trans.active button {
    border: 1px solid #faa31a;
}

.home-banner .left p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    padding-top: 14px;
    padding-bottom: 25px;
    margin-bottom: 0;
}
.home-banner .left ul {
    padding-left: 26px;
}
.home-banner .left {
    color: #fff;
}
.home-banner .left a {
    padding: 6px 18px !important;
}

.home-banner .right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-banner .right .b-img {
    margin: 0 20px;
    position: relative;
}

.home-banner .right .b-img img {
    width: 100%;
    z-index: 1;
    position: relative;
}


/* @keyframes half_rotate {
    0%   { transform:   rotate(90deg) ; }
    50%  { transform:  rotate(360deg); }
    100%  { transform: rotate(90deg); }
  } */


.blue-half:before {
    content: '';
    position: absolute;
    height: 30px;
    width: 60px;
    background: #1dbdef;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom: 0;
    transform: rotate(60deg) !important;
    z-index: 11;
   
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	transform: scale(1);
	animation: blue-half-pulse 3s infinite;
}

@keyframes blue-half-pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgb(29 189 239);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}

.yellow-half:before {
    content: '';
    position: absolute;
    height: 30px;
    width: 60px;
    background: #faa31a;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom: 0;
    transform: rotate(310deg) !important;
    z-index: 11;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	transform: scale(1);
	animation: yellow-half-pulse 3s infinite;
}

@keyframes yellow-half-pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgb(250 163 26);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}






.home-banner .right .b-img.one::before {
    top: 60px;
    left: -18px;
}

.home-banner .right .b-img.two::before {
   bottom: -2px;
   right: -23px;
}

.home-banner .right .b-img:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    border: 1px solid transparent;
    right: 0;
    z-index: 0;
    border-radius: 0;
    transition: all .4s ease-in-out;
}


.home-banner .right .b-img.one:after {
    height: 99%;
    width: 94%;
    border: 1px solid #faa31a;
    right: -7px;
    top: 15px;
    z-index: 0;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 156px;
    border-bottom-right-radius: 190px;
    animation: yellow-half-pulse 3s infinite;
}




.home-banner .right .b-img.one:hover:after {
	    border: 1px solid #1dbdef;
	    animation: blue-half-pulse 3s infinite;
}


.home-banner .right .b-img.two:after {
    height: 99%;
    width: 94%;
    border: 1px solid #1dbdef;
    right: -7px;
    top: -9px;
    z-index: 0;
    border-bottom-left-radius: 100px;
    border-top-left-radius: 156px;
    border-top-right-radius: 190px;
    animation: blue-half-pulse 3s infinite;
}

.home-banner .right .b-img.two:hover:after {
	    border: 1px solid #faa31a;
	    animation: yellow-half-pulse 3s infinite;
}


.header-main .banner-social {
    position: absolute;
    right: 0;
}

.home-banner .banner-social {
    position: absolute;
    right: 55px;
    top: 70px;
    bottom: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
        z-index: 111;
}

.home-banner .banner-social li {
    list-style: none !important;
    margin-bottom: 11px;
    text-align: center;
}

.home-banner .banner-social li a {
    color: #fff;
    font-size: 13px;
    padding: 5px;
    transition: all .2s ease-in-out !important;
}

.home-banner .banner-social:before {
	content: '';
	position: absolute;
	top: -160px;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80px;
	width: 1px;
	background: #fff;
	margin: auto;
	transition: all .4s ease-in-out;
}


.home-banner .banner-social li a i {
    transition: all .4s ease-in-out;
}

.home-banner .banner-social li a:hover i {
    transform: scale(1.25);
}

.home-banner .banner-social li a:hover {
    color: #faa31a;
}

.home-banner .banner-social:hover:before {
    background: #faa31a;
    height: 100px;
}


/* HOME BANNER END */




/* HOW PAWZITIVE WORKS START */

.how-pawzitive-works {
    padding-top: 55px;
    padding-bottom: 55px;
    position: relative;
}


.how-pawzitive-works:before {
    content: '';
    position: absolute;
    height: 350px;
    width: 350px;
    background: #e6f2f5;
    border-bottom: 0;
    transform: rotate(270deg) !important;
    z-index: 11;
    box-shadow: 0 0 0 0 rgb(0 0 0);
    transform: scale(1);
    animation: aqua-pulse 3s infinite;
    right: -200px;
    top: -50px;
    border-radius: 100%;
}

@keyframes aqua-pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgb(11 130 159 / 50%);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}


.how-pawzitive-works:after {
    content: '';
    position: absolute;
    height: 350px;
    width: 350px;
    background: transparent;
    border: 1px solid #0b829f;
    z-index: 11;
    box-shadow: 0 0 0 0 rgb(0 0 0);
    transform: scale(1);
    animation: aqua-pulse 3s infinite;
    left: -230px;
    bottom: 80px;
    border-radius: 100%;
}


.cont input[type="radio"] {
    -webkit-appearance: auto !important;
    display: inline-block;
    width: auto !important;
}





.how-pawzitive-works .head {
	text-align: center;
	position: relative;
	padding-bottom: 30px;
}

.how-pawzitive-works .head:before {
    left: 100px;
    top: -12px;
    transform: rotate(300deg) !important;
}


.how-pawzitive-works .head p {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    
}


.how-pawzitive-works .cont {
     display: -ms-flexbox;
     display: -webkit-flex;
     display: flex;
     -webkit-flex-direction: row;
     -ms-flex-direction: row;
     flex-direction: row;
     -webkit-flex-wrap: wrap;
     -ms-flex-wrap: wrap;
     flex-wrap: wrap;
     -webkit-justify-content: flex-start;
     -ms-flex-pack: start;
     justify-content: flex-start;
     -webkit-align-content: stretch;
     -ms-flex-line-pack: stretch;
     align-content: stretch;
     -webkit-align-items: flex-start;
     -ms-flex-align: start;
     align-items: center;
     justify-content: center;
}

.how-pawzitive-works .cont .one {
	   -webkit-order: 0;
	   -ms-flex-order: 0;
	   order: 0;
	   -webkit-flex: 1 1 auto;
	   -ms-flex: 1 1 auto;
	   flex: 1 1 50%;
	   -webkit-align-self: flex-start;
	   -ms-flex-item-align: start;
	   align-self: center;
}
.how-pawzitive-works .cont .two {
	  -webkit-order: 0;
	  -ms-flex-order: 0;
	  order: 0;
	  -webkit-flex: 1 1 auto;
	  -ms-flex: 1 1 auto;
	  flex: 1 1 50%;
	  -webkit-align-self: flex-start;
	  -ms-flex-item-align: start;
	  align-self: flex-start;
}
.how-pawzitive-works .cont .three { 
	  -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    margin-top: -152px;
}



.how-pawzitive-works .cont .inner {
    text-align: center;
    position: relative;
}

.how-pawzitive-works .cont .inner img {
    height: 90px;
    width: auto;
    transition: all .2s ease-in-out;
}


.how-pawzitive-works .cont .inner .circle:hover img {
    filter: invert(35%) sepia(70%) saturate(2673%) hue-rotate(343deg) brightness(97%) contrast(102%);
}

.how-pawzitive-works .cont .inner .circle {
    height: 200px;
    width: 200px;
    background: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    box-shadow: 0px 0px 10px 6px #f5f5f5;
    position: relative;
}

.how-pawzitive-works .cont .inner .circle span {
  position: absolute;
    top: -5px;
    right: 33px;
    height: 35px;
    width: 35px;
    background: #0b829f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    border-radius: 50%;

    transition: all .4s ease-in-out;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	animation: green-circle-pulse 3s infinite;

}

.how-pawzitive-works .cont .circle:hover span {
    background: #faa31a;
    	animation: green-circle-pulse-hover 3s infinite;
}



@keyframes green-circle-pulse {
	0% {
		box-shadow: 0 0 0 0 rgb(11 130 159);
	}

	70% {
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}

@keyframes green-circle-pulse-hover {
	0% {
		box-shadow: 0 0 0 0 rgb(250 163 26);
	}

	70% {
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}



.how-pawzitive-works .cont .inner h4 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    letter-spacing: 1px;
    text-transform: capitalize;
    padding: 22px 0 12px 0;
    color: #252525;
}

.how-pawzitive-works .cont .inner p {
    font-size: 14px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.how-pawzitive-works .cont .inner.three p {
    width: 25%;
}

.how-pawzitive-works .cont .one:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 93px;z-index: -1;
    height: 2px;
	background-image: url("data:image/svg+xml,%3csvg width='100%25' height='1%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='Silver' stroke-width='3' stroke-dasharray=' 12' stroke-dashoffset='0' /%3e%3c/svg%3e");
}


.how-pawzitive-works .cont .one .circle:before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #1dbdef;
    position: absolute;
    top: 84px;
    right: -62px;
    font-size: 14px;
}


.how-pawzitive-works .cont .two .circle:before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #1dbdef;
    position: absolute;
    top: 84px;
    left: -62px;
    font-size: 14px;
}


.how-pawzitive-works .cont .two:after {
	content: '';
	position: absolute;
	 width: 58%;
    top: 170px;
	z-index: -1;
    height: 2px;
	background-image: url("data:image/svg+xml,%3csvg width='100%25' height='1%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='Silver' stroke-width='3' stroke-dasharray=' 12' stroke-dashoffset='0' /%3e%3c/svg%3e");
	left: 0;
	transform: rotate(-45deg);
}


.how-pawzitive-works .cont .one:before {
	content: '';
	position: absolute;
	 width: 58%;
    top: 170px;
	z-index: -1;
    height: 2px;
	background-image: url("data:image/svg+xml,%3csvg width='100%25' height='1%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='Silver' stroke-width='3' stroke-dasharray=' 12' stroke-dashoffset='0' /%3e%3c/svg%3e");
	right: 0;
	transform: rotate(45deg);
}






.how-pawzitive-works .cont .two .circle:before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #1dbdef;
    position: absolute;
    top: 84px;
    left: -62px;
    font-size: 14px;
}

.how-pawzitive-works .cont .two .circle:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #1dbdef;
    position: absolute;
    top: 54px;
    left: -62px;
    font-size: 14px;
}

.how-pawzitive-works .cont .two .circle:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #1dbdef;
    position: absolute;
    top: 150px;
    left: -13px;
    font-size: 14px;
    transform: rotate(135deg);
}



.how-pawzitive-works .cont .three .circle:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #1dbdef;
    position: absolute;
    top: 148px;
    left: -13px;
    font-size: 14px;
    transform: rotate(135deg);
}


.how-pawzitive-works .cont .three .circle:before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #1dbdef;
    position: absolute;
    top: 12px;
    right: -12px;
    font-size: 14px;
    transform: rotate(
140deg
);
}

.how-pawzitive-works .cont .three .circle:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #1dbdef;
    position: absolute;
    top: 13px;
    left: -12px;
    font-size: 14px;
    transform: rotate(35deg);
}


.how-pawzitive-works .cont .one .circle:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #1dbdef;
    position: absolute;
	top: 154px;
    right: -13px;
    font-size: 14px;
    transform: rotate( 35deg);
}




/* HOW PAWZITIVE WORKS END */




/* HOME ABOUT US START */


.home-about {
    /* background-image: url(../img/home-about-bg.png); */
    padding: 90px 0 100px 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.home-about .right img {
    height: 450px;
    width: 450px;
    border-radius: 50%;
    object-fit: cover;
    border-top-right-radius: 0;
    position: relative;
    z-index: 1;
}

.home-about .right {
    position: relative;
    text-align: center;
}

.home-about .right:before {
	content: '';
	position: absolute;
	top: -12px;
	right: 0;
	left: -20px;
	margin: auto;
	height: 450px;
	width: 450px;
	border-radius: 50%;
	border-top-right-radius: 0;
	border: 1px solid #0b829f;
	z-index: 0;
	animation: aqua-pulse 3s infinite;
}


.home-about .left .head h2 {
    padding-bottom: 70px;
}

.home-about .left .head h2:after {
    right: unset;
}


.home-about .left p {
    width: 95%;
}


.home-about .left .b-trans a {
    padding: 6px 18px;
    color: #faa31a;
    border-color: #faa31a;
}

.home-about .left .b-trans:hover a {
    color: #fff;
}

.home-about .left {
    position: relative;
}

.home-about .left:after {
	content: '';
	position: absolute;
	bottom: -195px;
	right: -10px;
	background-image: url('../img/home-about-cat-dog.png');
	height: 220px;
	width: 450px;
	background-size: 100% 100%;
}



/* HOME ABOUT US END */





/*  WHAT WE OFFER START */

.home-what-we-offer {
    padding-top: 100px;
    padding-bottom: 50px;
}

.home-what-we-offer .head {
    text-align: center;
    margin-bottom: 40px;
}

.home-what-we-offer .head p {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.home-what-we-offer .cont .img img {
    height: auto;
    width: 100%;
    transition: all .4s ease-in-out;

}


.home-what-we-offer .cont .img {
    position: relative;
    overflow: hidden;
   clip-path: circle(50% at 50% 50%);

}

.home-what-we-offer .cont .img:after {
    position: absolute;
    content: '';
    bottom: -76%;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    transition: all .4s ease-in-out;
}

.home-what-we-offer .cont:hover .img:after {
    bottom: -74%;
}


/* .home-what-we-offer .cont span.icon {
	background: #1dbdef;
    height: 55px !important;
    width: 55px !important;
    position: absolute;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: -75px;
    transition: all .4s ease-in-out;
} */

.home-what-we-offer .cont span.icon {
    background: #1dbdef;
    height: 55px !important;
    width: 55px !important;
    position: relative;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    right: 0;
    margin: auto;
    top: -30px;
    bottom: 0px;
    transition: all .4s ease-in-out;
}

.home-what-we-offer .cont span.icon img {
    width: auto;
    height: 30px;

}

.home-what-we-offer-row2 .cont p {
    text-align: center;
    height: 120px;
    overflow-y: auto;
}

.service-req-form-row3 .below .below-txt {
    height: 110px;
    overflow-y: auto;
}

.home-what-we-offer .cont h4 {
   color: #252525;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    background: #fff;
    letter-spacing: .5px;
    padding: 5px;
    margin-top: -15px;
    margin-bottom: 0;
    z-index: 1111;
    position: relative;
    transition: all .4s ease-in-out;
    text-transform: capitalize;
}


.home-what-we-offer .cont a {
    color: #1dbdef;
    display: block;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    animation: arrow_move 1s ease-in-out infinite;
    transform-origin: 50% 50%;
    font-size: 18px;
}

.home-what-we-offer .cont a:hover{
    color: #faa31a;
}

.home-what-we-offer .cont:hover a {
    opacity: 1;
    pointer-events: visible;
}


@keyframes arrow_move {
    0%   { transform:  translate(0px, 0px); }
    50%  { transform:  translate(5px, 0px); }
    100% { transform:  translate(0px, 0px); }
  }


.home-what-we-offer .cont:hover .img img {
    transform: scale(1.2);
}


.home-what-we-offer .cont:hover span.icon {
    background: #faa31a;
}

.home-what-we-offer .cont:hover h4 {
    color: #faa31a;
}

.service-req-form-row2 .b-trans a {
    background-color: #faa31a;
    transition: all 0.5s ease;
}

.service-req-form-row2 .b-trans a:hover {
    background-color: #fff;
    color: #faa31a;
}

/*  WHAT WE OFFER END */



/* CAT DOG FORM START */


.cat-dog-form {
    position: relative;
    background: #def9ff;
    border-radius: 30px;
    padding: 30px 15px;
}

/* .cat-dog-form:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 85%;
    width: 100%;
    background: #def9ff;
    border-radius: 37%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
} */
.cat-dog-form h2 {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 0;
    padding-bottom: 20px;
}
.cat-dog-form ul li {
    list-style: disc;
    list-style-position: inside;
    font-size: 16px;
    line-height: 2;
    font-weight: 400;
    color: #252525;
}
.cat-dog-btn {
    padding: 0px 15px;
}
.cat-dog-btn .b-trans a {
    color: #faa31a;
    border-color: #faa31a;
}
.cat-dog-btn .b-trans a:hover {
    color: #fff;
}
.cat-dog-form .cont form{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.cat-dog-form .cont span input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size: 14px;
  color: #fff;
  opacity: 1; /* Firefox */
}


.cat-dog-form .cont span input, .cat-dog-form .cont span button {
    width: 100%;
    text-align: left;
    padding: 0;
    border: 1px solid #fff;
    font-size: 14px;
    color: #fff;
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
    background: transparent;
    padding: 10px 20px;
    border-radius: 25px;
}


.cat-dog-form .bg {
     background-image: url(../img/cat-dog-form-bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 30px 20px;
    position: relative;
}

.cat-dog-form .bg.yellow-half:before {
    left: unset;
    right: 160px;
    top: -20px;
}

.cat-dog-form .cont span {
    margin: 15px;
    position: relative;
}

/* .cat-dog-form .cont span.pick-up:after, .cat-dog-form .cont span.drop-off:after {
    content: "\f073";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    color: #fff;
    top: 10px;
    right: 17px;
    font-size: 14px;
} */

.cat-dog-form .cont span.pick-up:after, .cat-dog-form .cont span.drop-off:after {
    content: "\f073";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    color: #fff;
    top: 12px;
    right: 17px;
    font-size: 11px;
}


.cat-dog-form .cont span button:after {
    right: 17px !important;
    position: absolute;
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    margin: 0;
    font-size: 14px;
}



.cat-dog-form .cont span .dropdown-menu {
    min-width: 95%;
    padding-top: 0;
    padding-bottom: 0;
}


.cat-dog-form .cont span .dropdown-menu a {
    font-size: 14px;
    padding: 8px 25px !important;
}


.cat-dog-form nav div {
    display: flex;
    text-align: center;
    justify-content: center;
    border: none;
    padding: 20px 0;
}


.cat-dog-form nav div a {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid #fff !important;
    border-radius: 25px !important;
    padding: 5px 36px  !important;
    font-weight: 500 !important;
    font-size: 16px;
    margin: 0px 16px;
    border-top-right-radius: 0 !important;
}

.cat-dog-form nav div a:hover, .cat-dog-form nav div a.active {
    background: #fff !important;
    color: #0b7e99 !important;
}



.ui-widget-header {
    border: 1px solid #ffffff;
    background: #ffffff;
    color: #333333;
}

.ui-datepicker-next-hover {
    background: transparent !important;
    border: none !important;
    padding: unset !important;
    margin: 0 !important;
}


.cat-dog-form .cont .b-trans a {
    padding: 7px 30px;
}

.cat-dog-form .cont .b-trans {
    margin-top: 25px;
}


.dropdown-item:focus, .dropdown-item:hover, .dropdown-item.active, .dropdown-item:active {
    color: #fff !important;
    text-decoration: none;
    background-color: #0b7f96 !important;
}

.ui-widget.ui-widget-content {
    z-index: 11 !important;
}


/* .cat-dog-form .below {
  	display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: center;
    padding: 90px 0;
} */
.cat-dog-form .below {
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: center;
    padding: 30px 0;
}

.cat-dog-form .below .icon img {
    height: 60px;
    width: auto;
    transition: all .1s  ease-in-out;
    position: relative;
    z-index: 1;
}

.cusSliderInner {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
}

.cat-dog-form .below h4 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    padding-bottom: 10px;
}

.cat-dog-form .below p {
    font-size: 16px;
    color: #252525;
    margin-bottom: 0;
}

.cat-dog-form .below:hover .icon img {
    filter: invert(30%) sepia(83%) saturate(5569%) hue-rotate(347deg) brightness(109%) contrast(96%);
}

.cat-dog-form .below .icon {
    position: relative;
}

/* .cat-dog-form .below .icon:before {
      width: 0;
      height: 0;
      border-left: 58px solid transparent;
      border-right: 58px solid transparent;
      border-top: 60px solid #e7ddb5;
      border-radius: 50%;
      position: absolute;
      content: '';
      transform: rotate(-45deg);
      z-index: 0;
      left: -40px;
      top: -14px;
      transition: all .4s ease-in-out;
} */

.cat-dog-form .below .icon:before {
    width: 0;
    height: 0;
    border-left: 58px solid transparent;
    border-right: 58px solid transparent;
    border-top: 60px solid #e7ddb5;
    border-radius: 50%;
    position: absolute;
    content: '';
    transform: rotate(-45deg);
    z-index: 0;
    left: -25px;
    top: -14px;
    transition: all .4s ease-in-out;
}


.cat-dog-form .below:hover .icon:before {
    transform: rotate(80deg);
}


.chooseBottomContent h4{
    font-size: 20px;
}


/* CAT DOG FORM END */





/* HOME TESTIMONIALS START */
.testi-img img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    transition: all .4s ease-in-out;
    margin: 0 auto;
    object-fit: cover;
}

/* .home-testimonails {
	padding: 80px 0;
	position: relative;
	overflow: hidden;
} */
.home-testimonails {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    padding-bottom: 0px;
}


section.home-testimonails:after {
    content: '';
    position: absolute;
    height: 350px;
    width: 350px;
    background: #fef6e8;
    border-bottom: 0;
    transform: rotate(270deg) !important;
    z-index: 11;
    box-shadow: 0 0 0 0 rgb(0 0 0);
    transform: scale(1);
    animation: yellow-half-pulse 3s infinite;
    right: -260px;
    top: 50px;
    border-radius: 100%;
}



section.home-testimonails:before {
       content: '';
    position: absolute;
    height: 350px;
    width: 350px;
    background: transparent;
    border: 1px solid #fef6e8;
    z-index: 11;
    box-shadow: 0 0 0 0 rgb(0 0 0);
    transform: scale(1);
    animation: yellow-half-pulse 3s infinite;
    left: -230px;
    top: 20px;
    border-radius: 100%;
}


.home-testimonails .slider-nav-thumbnails img {
    width: 90px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all .4s ease-in-out;
}


.home-testimonails .slider-nav-thumbnails a:nth-child(3) img {
    filter: none;
}

.home-testimonails .head {
    text-align: center;
    padding-bottom: 30px;
}

.home-testimonails .head p {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}


.slick-slide {

 	outline:0px !important;
    -webkit-appearance:none;
    box-shadow: none !important;
}


.home-testimonails .cont {
    text-align: center;
}

.home-testimonails .cont > img {
    margin-left: auto;
    margin-right: auto;
    padding: 30px 0;
    pointer-events: none;
}

.home-testimonails .cont p {
    font-size: 16px;
    width: 68%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    padding-bottom: 25px;
}

.home-testimonails .cont h4 {
    color: #faa31a;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    padding-bottom: 8px;
    text-transform: uppercase;
}

.home-testimonails .cont h5 {
    font-size: 16px;
    color: #252525;
}



/* .home-testimonails .slick-prev {
    bottom: -85px !important;
    top: unset;
    left: -60px;
    right: 0;
    margin: auto;
    width: 40px;
    height: 40px;
    background: #0b829f;
    border-radius: 50%;
    transition: all .4s ease-in-out;
} */
.home-testimonails .slick-prev {
    bottom: 0px !important;
    top: unset;
    left: -60px;
    right: 0;
    margin: auto;
    width: 40px;
    height: 40px;
    background: #0b829f;
    border-radius: 50%;
    transition: all .4s ease-in-out;
    z-index: 9;
}

/* .home-testimonails .slick-next {
    bottom: -85px !important;
    top: unset;
    right: -60px;
    left: 0;
    margin: auto;
    width: 40px;
    height: 40px;
    background: #0b829f;
    border-radius: 50%;
    transition: all .4s ease-in-out;
} */
.home-testimonails .slick-next {
    bottom: 0px !important;
    top: unset;
    right: -60px;
    left: 0;
    margin: auto;
    width: 40px;
    height: 40px;
    background: #0b829f;
    border-radius: 50%;
    transition: all .4s ease-in-out;
}
.home-testimonails .slick-arrow:hover {
    background: #faa31a;
}


.home-testimonails .slick-prev:before {
	content: "\f053";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	opacity: 1;
	font-size: 14px;
}

.home-testimonails .slick-next:before {
	content: "\f054";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	opacity: 1;
	font-size: 14px;
}



.home-testimonails .shape{
	position: relative;
}


/* .home-testimonails .shape:after {
width: 0;
    height: 0;
   border-left: 430px solid transparent;
    border-right: 430px solid transparent;
    border-top: 430px solid transparent;
    border-bottom: 415px solid #e9f7ff;
    border-radius: 50%;
    position: absolute;
    content: '';
    transform: rotate( 
180deg
 );
    transition: all .4s ease-in-out;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -127%;
    z-index: -1;
    top: 0;
} */


.home-testimonails .shape:after {
    width: 0;
    height: 0;
    border-left: 515px solid transparent;
    border-right: 515px solid transparent;
    border-top: 515px solid transparent;
    border-bottom: 500px solid #e9f7ff;
    border-radius: 50%;
    position: absolute;
    content: '';
    transform: rotate( 180deg );
    transition: all .4s ease-in-out;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
    bottom: 0;
    top: 100%;
}
.home-testimonails #slider .slick-track {
    padding-bottom: 75px;
}

.home-testimonails .slider-nav-thumbnails li {
    list-style: none;
    margin: 0 16px;
}

.home-testimonails .slider-nav-thumbnails {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-testimonails .slider-nav-thumbnails li a.active img {
	transform: scale(1.2);
	filter: none;
}

.home-testimonails .slider-nav-thumbnails li:nth-child(1), .home-testimonails .slider-nav-thumbnails li:nth-child(5) {
    position: relative;
    bottom: -75px;
    z-index: 111;
}

.home-testimonails .slider-nav-thumbnails li:nth-child(2), .home-testimonails .slider-nav-thumbnails li:nth-child(4) {
    position: relative;
    bottom: -20px;    
    z-index: 111;
}




/* HOME TESTIMONIALS END */





/* INNER PAGES START */

section.inner-banner {
    height: 550px;
    margin-bottom: 60px;
    padding-top: 200px;
    padding-bottom: 65px;
    margin-top: -146px;
    background-repeat: no-repeat;
    background-size: cover;
}

section.inner-banner .cont {
    display: flex;
    justify-content: center;
    align-items: center;
}

section.inner-banner .container, section.inner-banner .container .row, section.inner-banner .container .cont {
    height: 100%;
}

section.inner-banner .cont h2 {
    color: #fff;
    font-size: 65px;
    text-transform: capitalize;
    font-weight: 800;
    letter-spacing: 2px;
}

.inner-banner.post-transport-banner {
        background-image: url(../img/post-transport-banner.png);
}


.inner-banner:before {
       content: '';
    position: absolute;
    height: 550px;
    width: 550px;
    border: 1px solid #395c61;
    right: -130px;
    top: -190px;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    animation: home-banner-circle-white 3s infinite;
}

@keyframes home-banner-circle-white {
    0% {
        box-shadow: 0 0 0 0 rgb(255 255 255 / 25%);
    }

    70% {

        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}






/* POST TRANSPORT START */



.post-transport-main {
    background-image: url(../img/post-transport-bg.png);
     position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 150px;
    margin-bottom: -150px;
}

.post-transport-main .head h2, .how-it-works-main .head h2, .drivers-main .head h2, .resources-main .head h2 {
    display: block;
    text-align: center;
}

.post-transport-main .head, .how-it-works-main .head, .drivers-main .head, .resources-main .head {
    margin-bottom: 50px;
}

.post-transport-main .head p, .how-it-works-main .head p, .drivers-main .head p, .resources-main .head p {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}




.post-transport-main .cont form{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}



.post-transport-main .cont span:nth-child(1) { grid-area: 1 / 1 / 2 / 2; }
.post-transport-main .cont span:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
.post-transport-main .cont span:nth-child(3) { grid-area: 1 / 3 / 2 / 4; }
.post-transport-main .cont span:nth-child(4) { grid-area: 2 / 1 / 3 / 2; }
.post-transport-main .cont span:nth-child(5){ grid-area: 2 / 2 / 3 / 3; }
.post-transport-main .cont span:nth-child(6) { grid-area: 2 / 3 / 3 / 4; }
.post-transport-main .cont span:nth-child(7) { grid-area: 3 / 1 / 4 / 4; }




.post-transport-main .cont span input::placeholder, .post-transport-main .cont span textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size: 14px;
  color: #252525;
  opacity: 1; /* Firefox */
}


.post-transport-main .cont span input, .post-transport-main .cont span button, .post-transport-main .cont span textarea {
    width: 100%;
    text-align: left;
    padding: 0;
    border: 1px solid #252525;
    font-size: 14px;
    color: #252525;
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
    background: transparent;
    padding: 10px 20px;
    border-radius: 25px;
}


.post-transport-main .bg {
     background-image: url(../img/cat-dog-form-bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 30px 20px;
    position: relative;
}

.post-transport-main.bg.yellow-half:before {
    left: unset;
    right: 160px;
    top: -20px;
}

.post-transport-main .cont span {
    margin: 15px;
    position: relative;
}

.post-transport-main .cont span.pick-up:after, .post-transport-main .cont span.drop-off:after {
    content: "\f073";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    color: #252525;
    top: 10px;
    right: 17px;
    font-size: 14px;
}

.post-transport-main .cont span button:after {
    right: 17px !important;
    position: absolute;
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    margin: 0;
    font-size: 14px;
}



.post-transport-main .cont span .dropdown-menu {
    min-width: 95%;
    padding-top: 0;
    padding-bottom: 0;
}


.post-transport-main .cont span .dropdown-menu a {
    font-size: 14px;
    padding: 8px 25px !important;
}


.post-transport-main nav div {
    display: flex;
    text-align: center;
    justify-content: center;
    border: none;
    padding: 20px 0;
    margin-bottom: 15px;
}


.post-transport-main nav div a {
    background: transparent !important;
    color: #252525 !important;
    border: 1px solid #252525 !important;
    border-radius: 25px !important;
    padding: 5px 36px  !important;
    font-weight: 500 !important;
    font-size: 16px;
    margin: 0px 16px;
    border-top-right-radius: 0 !important;
}

.post-transport-main nav div a:hover, .post-transport-main nav div a.active {
    background: #0b829f !important;
    color: #fff !important;
    border-color: #0b829f !important;
}

.post-transport-main .b-trans a {
    border-color: #faa31a;
    padding: 8px 30px;
    color: #faa31a;
}

.post-transport-main .b-trans:hover a {
    color: #Fff;
}


.post-transport-main .b-trans {
    margin-top: 20px;
}


/* POST TRANSPORT START */




/* HOW IT WORKS START */


.how-it-works-main{
    position: relative;
}

.how-it-works-main:before {
content: '';
    position: absolute;
    height: 400px;
    width: 400px;
    background: #e6f2f5;
    border-bottom: 0;
    transform: rotate( 
270deg
 ) !important;
    z-index: 11;
    box-shadow: 0 0 0 0 rgb(0 0 0);
    transform: scale(1);
    animation: aqua-pulse 3s infinite;
    right: -315px;
    top: -25px;
    border-radius: 100%;
}


.how-it-works-main:after {
  content: '';
    position: absolute;
    height: 400px;
    width: 400px;
    background: transparent;
    border: 1px solid #0b829f;
    z-index: 11;
    box-shadow: 0 0 0 0 rgb(0 0 0);
    transform: scale(1);
    animation: aqua-pulse 3s infinite;
    left: -315px;
    bottom: 250px;
    top: 0;
    border-radius: 100%;
    margin: auto;
}





.how-it-works-banner{
    background-image: url(../img/how-it-works-banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 150px;
    margin-bottom: -150px;
}


.inner-banner.how-it-works-banner:before {
    border: 1px solid #cccccc70;
}

.how-it-works-main .row.cont {
    padding-bottom: 50px;
}

.how-it-works-main .row.cont .cont-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.how-it-works-main .row.cont .cont-inner h4 {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 0;
    padding-bottom: 20px;
}

.how-it-works-main .row.cont .cont-inner p {
    font-size: 16px;
    line-height: 2;
    font-weight: 400;
    color: #252525;
}

.how-it-works-main .row.cont .img {
    text-align: center;
}

.how-it-works-main .row.cont img {
    animation: how-it-works-scale 8s ease-in-out infinite;
    transform-origin: 50% 50%;
}
@keyframes how-it-works-scale {
    0%   { transform: scale(0.9);}
    50%  { transform: scale(1);}
    100% { transform: scale(0.9); }
  }


.how-it-works-main {
  counter-reset: my-sec-counter;
}

.how-it-works-main .cont .img::before {
   counter-increment: my-sec-counter;
    content: "" counter(my-sec-counter);
    background: #faa31a;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    z-index: 11;
    animation: yellow-half-pulse 3s infinite;
} 

.how-it-works-main .cont.right .img::before {
    right: 75px;
}

.how-it-works-main .cont.left .img::before {
    left: 75px;
}


.how-it-works-main .cont:before {
    content: '';
    position: absolute;
    height: 230px;
    width: 230px;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -150px;
    left: 0;
    right: 80px;
    margin: auto;
}

.how-it-works-main .cont {
    position: relative;
}


.how-it-works-main .cont.right:before {
    background-image: url(../img/how-pawzitive-works-shape-1.png);
    bottom: -150px;
    left: 0;
    right: 50px;
}

.how-it-works-main .cont.right:last-child:before {
    display: none;
}


.how-it-works-main .cont.left:before {
    background-image: url(../img/how-pawzitive-works-shape-2.png);
    bottom: -150px;
    right: 0;
    left: 0;
    margin: auto;
}


/* HOW IT WORKS END */



/* DRIVERS START */

.drivers-banner{
    background-image: url(../img/drivers-banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 150px;
    margin-bottom: -150px;
}


.drivers-main .head {
    padding-bottom: 5px;
}

.drivers-main .cont img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: all .4s ease-in-out;
}

.drivers-main .cont .img:hover img {
    transform: scale(1.1);
}

.drivers-main .cont .img {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

.drivers-main .cont .img:after {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    margin: auto;
    height: 80px;
    width: 100%;
    background: rgb(0 0 0 / 80%);
    z-index: 1;
    transition: all .4s ease-in-out;
    display: none;
}

.drivers-main .cont:hover .img:after {
    bottom: 0;
}

.drivers-main .cont .img:before {
    content: '';
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 100%;
    width: 100%;
    background: rgb(29 189 239 / 50%);
    z-index: 1;
    transition: all .4s ease-in-out;
    transform: scale(0, 0);
    border-radius: 50%;
}

.drivers-main .cont:hover .img:before {
    transform: scale(1, 1);
}

.drivers-main .cont:after {
    content: '';
    position: absolute;
    height: 20px;
    width: 42px;
    background: #1dbdef;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom: 0;
    transform: rotate( 60deg ) !important;
    z-index: 11;
    box-shadow: 0 0 0 0 rgb(0 0 0);
    transform: scale(1);
    animation: blue-half-pulse 3s infinite;
    top: 150px;
    right: 10px;
}


.drivers-main .cont:before {
    content: '';
    position: absolute;
    height: 20px;
    width: 42px;
    background: #faa31a;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom: 0;
    transform: rotate(
310deg
) !important;
    z-index: 11;
    box-shadow: 0 0 0 0 rgb(0 0 0);
    transform: scale(1);
    animation: yellow-half-pulse 3s infinite;
    top: 45px;
    left: -3px;
}


.drivers-main .cont h2 {
    font-size: 20px;
    color: #252525;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
    margin: 0;
    padding-bottom: 5px;
    height: 80px;
}

.drivers-main .cont h5 {
    text-align: center;
    color: #0b829f;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    padding-bottom: 15px;
}

.drivers-main .cont p {
    text-align: center;
    color: #252525;
    font-size: 14px;
    line-height: 1.8;
}


.drivers-main .cont .price p {
    text-align: center;
    margin: 0;
    color: #faa31a;
    font-weight: bold;
    font-size: 26px;
    letter-spacing: 1px;
    margin-top: -65px;
    z-index: 11111;
    position: relative;
    padding-bottom: 35px;
    opacity: 0;
    transition: all .4s ease-in-out;
}

.drivers-main .cont:hover .price p {
    opacity: 1;
}

.drivers-loadmore a {
    border: 1px solid #faa31a;
    color: #faa31a;
    padding: 8px 20px;
}

.drivers-loadmore:hover a {
    color: #fff;
}

.drivers-main .drivers-list {
    margin-bottom: 20px;
    display: none;
}


/* DRIVERS END */

.giving-banner{
    background-image: url(../img/giving.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 150px;
    margin-bottom: -150px;
}

.faq-banner{
    background-image: url(../img/faq-banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 150px;
    margin-bottom: -150px;
}


/* RESOURCES START */


.resources-banner{
    background-image: url(../img/resources-banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 150px;
    margin-bottom: -150px;
}


.resources-main .left span input::placeholder, .resources-main .left span textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-size: 14px;
  color: #fff;
  opacity: 1; /* Firefox */
}


.resources-main .left span input, .resources-main .left span button {
    width: 100%;
    text-align: left;
    padding: 0;
    border: 1px solid #fff;
    font-size: 14px;
    color: #fff;
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
    background: transparent;
    padding: 10px 20px;
    border-radius: 15px;
}




.resources-main .left .cont span {
    margin: 15px;
    position: relative;
}

.resources-main .left .cont {
    background-image: url(../img/resources-left-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px 15px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
     border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
     box-shadow: -3.032px 10.574px 59px 0px rgba(37, 37, 37, 0.2);
}

.resources-main .right .cont {
    background-image: url(../img/resources-right-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px 30px;
    height: 100%;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.resources-main .left .cont h2 {
    font-size: 24px;
    color: #fff;
    margin: 0;
    padding-bottom: 25px;
    text-align: center;
    font-weight: 900;
    text-transform: capitalize;
    letter-spacing: .5px;
}



.resources-main .left .cont form{
display: grid;
grid-template-columns: repeat(2, 1fr);
/* grid-template-rows: repeat(3, 1fr); */
grid-column-gap: 0px;
grid-row-gap: 0px;
}



.resources-main .left form span:nth-child(1) { grid-area: 1 / 1 / 2 / 2; }
.resources-main .left form span:nth-child(2)  { grid-area: 1 / 2 / 2 / 3; }
.resources-main .left form span:nth-child(3)  { grid-area: 2 / 1 / 3 / 2; }
.resources-main .left form span:nth-child(4)  { grid-area: 2 / 2 / 3 / 3; }
.resources-main .left form span:nth-child(5)  { grid-area: 3 / 1 / 4 / 2; }
.resources-main .left form span:nth-child(11) { grid-area: 6 / 1 / 8 / 3; }

.resources-main .left form span textarea {
    width: 100%;
    text-align: left;
    padding: 0;
    border: 1px solid #fff;
    font-size: 14px;
    color: #fff;
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
    background: transparent;
    padding: 10px 20px;
    border-radius: 15px;
}


.resources-main .left .cont .b-trans {
    width: 25%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    overflow: hidden;
    margin-top: 10px;
    grid-area: 10 / 1 / 11 / 3;
}

.resources-main .left .cont .b-trans button {
    background: transparent;
}


.resources-main .left .cont input::-webkit-outer-spin-button,
.resources-main .left .cont input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.resources-main .left .cont input[type=number] {
  -moz-appearance: textfield;
}


.resources-main .right h2{
    font-size: 24px;
    color: #252525;
    margin: 0;
    padding-bottom: 25px;
    font-weight: 900;
    text-transform: capitalize;
    letter-spacing: .5px;
}


.resources-main .right .cont ul li {
    position: relative;
    list-style: none;
    border-bottom: 1px solid #ccc;
    padding: 30px 0;
    padding-left: 60px;
}

.resources-main .right .cont ul li a {
    font-size: 16px;
    color: #252525;
    font-weight: 400;
        letter-spacing: .5px;
}

.resources-main .right .cont ul li a:hover {
    color: #0b829f;
}

.resources-main .right .cont ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 50px;
    width: 50px;
    background-repeat: no-repeat;
    border-radius: 50%;
}

.resources-main .right .cont ul li.phone:before {
 background-image: url(../img/telephone.png);
}

.resources-main .right .cont ul li.email:before {
 background-image: url(../img/email.png);
}

.resources-main .right .cont ul li.address:before {
 background-image: url(../img/maps-and-location.png);
 top: 30px;
}

.resources-main .right .cont ul li:last-child {
    border: transparent;
    padding-bottom: 0;
}

.resources-main .right .cont ul li h5 {
    font-size: 18px;
    font-weight: bold;
    color: #0b829f;
    letter-spacing: 1px;
}


.resources-main .map {
    margin-top: 70px;
}

.resources-main .map iframe {
    border-radius: 80px;
    border-top-right-radius: 0;
    border: 5px solid #faa31a !important;
}
.new-pet-tips .sec-title-2 {
    margin: 0;
}
.new-pet-tips .row.right.content-sec-2, .new-pet-tips .row.left.content-sec-2 {
    padding-top: 0;
}
/* RESOURCES END */




/* LOGIN/REG START */

.log-reg-main .cont {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 0px 8px 0px #1dbdef !important;
    padding: 40px 20px;
    margin-bottom: 50px;
    margin-top: 50px;
}

.log-reg-main .cont form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.log-reg-main .cont form input {
    padding: 8px 20px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 25px;
    width: 100%;
     outline:0px !important;
    -webkit-appearance:auto;
    box-shadow: none !important;
}


.log-reg-main .cont form input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #252525 !important;
  font-size: 12px;
  opacity: 1; /* Firefox */
}


.log-reg-main .cont img {
    width: auto;
    height: 80px;
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.log-reg-main .cont span {
    width: 100%;
}


.log-reg-main .cont .b-trans {
    width: 90px;
    margin-top: 15px;
}

.log-reg-main .cont .b-trans button {
    background: transparent;
    color: #faa31a;
    border: 1px solid #faa31a;
}

.log-reg-main .cont .b-trans:hover button {
    color: #fff;
}

.log-reg-main .cont span a {
    color: #1dbcee;
    font-size: 12px;
}

.log-reg-main .cont span a:hover {
    color: #252525;
}


.log-reg-main.register .cont .b-trans {
    width: 114px;
}

/* LOGIN/REG END */


/* 404 PAGE START */

.error-404.not-found {
text-align: center;
height: 100vh;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: center;
width: 100vw;
left: 50%;
margin-left: -50vw;
position: relative;
}

.not_found_inner .cont {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
    width: 70%;
}

.not_found_inner {
    background-image: url(../img/404.jpg);
background-size: cover;
height: inherit;

}

.error404 .cont {
    max-width: 69.5%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.error404 #masthead, .error404 #colophon {
display: none;
}
.error-404 .logo a {
outline: 0 !important;
}
.error-404.not-found .logo {
padding: 0;
background-color: transparent;
}

.error-404.not-found .logo img {
    height: 120px !important;
    object-fit: cover;
}

.error-404.not-found h1 {
font-size: 200px;
line-height: 1;
color: #1dbdef;
margin: 5px 0;;
font-weight: 800;

}
.error-404.not-found h1 span{
color: #faa31a;
}
.error-404 .page-header h3 {
color: #000;
font-weight: 700;
margin-bottom: 10px;
font-size: 40px;
}
.error-404 .page-header p {
font-size: 22px !important;
color: #000;
margin-bottom: 20px;
}
.error-404 .page-content .return_home {
background-color: #093e96;
    color: #fff;
    padding: 12px 29px;
    display: inline-block;
    font-size: 20px;
    box-shadow: 0 2px 10px 0px rgb(0 0 0 / 50%);
    text-decoration: none;
    transition: all 0.5s ease-in-out;
    border: 2px solid #093e96;
    border-top-right-radius: 25px;
}

.error-404 .page-content .return_home:hover {
    background-color: #252525;
     border-color: #252525;
}


.error404 header, .error404 footer, .error404 .footer-newsletter, .error404 .copyrights  {
    display: none;
}

.error-404.not-found header {
    display: block !important;
}


.page-404 header.page-header {
    display: block;
}


.error-404 .b-trans a {
    border-color: #faa31a;
    color: #faa31a;
}

.error-404 .b-trans a:hover {
    color: #fff;
}




/* 404 PAGE END */
.how-it-works-main.new-pet-tips .head p {
    width: 80%;
}
.row.right, .row.left {
    padding: 50px 0;
    align-items: center;
}
button#dropdownMenuButton:focus {
    box-shadow: none;
    background-color: transparent;
    border-color: transparent;
}
.row.home-what-we-offer-row1 {
    margin-top: 50px;
}
.row.service-req-form-row2 {
    text-align: center;
    margin-top: 35px;
}
.copyright-txt {
    position: relative;
}
.copyrights ul.footer-social li a {
    color: #fff;
    margin: 0 auto;
    display: table;
}
.copyrights ul.footer-social li a:hover {
    color: #faa31a;
}
.rt-sec {
    margin-bottom: -160px;
}
.row.rt-sec-row2 {
    padding-bottom: 50px;
}
.verification-driver-profile h4 {
    font-size: 18px;
}
.offer-sec li {
    display: flex;
    align-items: center;
    padding: 5px 0;
}
.offer-sec li i {
    margin-right: 10px;
    color: #faa31a;
}
.offer-sec li h4 {
    font-size: 20px;
    margin-bottom: 0;
}
.faqs .faqs-list {
    display: none;
}
.faqs #main #faq .card .card-body ul, .faqs #main #faq .card .card-body ol {
    padding-left: 1.25rem;
}
.marker{
    background-color: Yellow;
}
blockquote {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 40px;
    margin-inline-end: 40px;
}
.faqs-loadmore a {
    border: 1px solid #faa31a;
    color: #faa31a;
    padding: 8px 20px;
}
.faqs-loadmore:hover a {
    color: #fff;
}
.modal-footer button.btn.btn-secondary {
    color: #fff;
    background-color: transparent;
    border: 1px solid #faa31a;
    color: #faa31a;
    padding: 8px 20px;
    font-size: 16px;
    border-radius: 25px;
    border-top-right-radius: 0;
    font-weight: 500;
    letter-spacing: 1px;
    display: inline-block;
    z-index: 11;
    position: relative;
}
.modal-footer button.btn.btn-secondary:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #faa31a;
    z-index: 0;
    border-radius: 25px;
    border-top-right-radius: 0;
    transition: all .4s ease-in-out;
    transform: rotateX(90deg);
}
.modal-footer button.btn.btn-secondary:hover:before {
    right: 0;
    top: 0;
    transform: rotateX(0deg);
    z-index: -1;
}
.modal-footer button.btn.btn-secondary:hover {
    color: #fff;
}
.cd-tabs-navigation li.b-trans.btn-tab:hover a {
    box-shadow: inset 0 1px #faa31a;
}
.cd-tabs-navigation li.b-trans.btn-tab:hover a.selected {
    box-shadow: inset 0 1px #1dbdef;
}
.log-reg-main .cont .forget-btn {
    width: 100%;
}
.log-reg-main .cont .forget-btn .b-trans {
    width: auto;
    margin: 0 auto;
    display: table;
}
.dropdown-menu.show {
    background-color: rgb(11 130 159 / 49%) !important;
}
.dropdown-menu {
    min-width: 13rem;
}
.btn {
    padding: .0rem .75rem;
}
.request-transport .row.service-req-form-row3 {
    margin-bottom: -150px;
    padding-bottom: 150px;
}
.log-reg-main .cont .forget-btn .b-trans.reset-psw button {
    font-size: 13px;
}
div#email-error, span#message {
    margin-top: -15px;
}
.form-control:focus {
    background-color: #fff;
}
span.form-input a {
    color: #faa31a;
}
span.form-input a:hover {
    color: #fff;
}
span.alredy-login {
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
}
span.alredy-login a {
    color: #faa31a;
}
span.alredy-login a:hover {
    color: #fff;
}
.form-fild input[type="file"] {
    cursor: pointer;
}

.service-req-form-row3 .slick-prev::before,
.service-req-form-row3 .slick-next::before {
    color: #000;
}

/* INNER PAGES END */












/* FOOTER START */

footer {
    background-image: url(../img/footer-bg.png);
    padding: 160px 0 70px 0;
    background-size: 100% 100%;
    margin-top: 70px;
    position:  relative;
    font-weight: normal;
}

footer:after {
    content: '';
    position: absolute;
    background-image: url(../img/footer-paw.png);
    background-repeat: no-repeat;
    height: 330px;
    width: 330px;
    background-size: contain;
    top: -20px;
    right: -140px;
        animation: paw_scale 5s ease-in-out infinite;
    transform-origin: 50% 50%;
    pointer-events: none;
}


@keyframes paw_scale {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.2); }
    100% { transform: scale(1); }
  }








footer:after {content: '';position: absolute;right: -103px;top: 0;bottom: -100px;margin: auto;height: 350px;width: 300px;background-image: url('../img/footer-paw.png');background-repeat: no-repeat;background-size: contain;}

footer .cont h4 {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 30px;
}

footer .cont p {
      font-size: 13px;
    color: #fff;
}


footer .cont .footer-navigation a {
    color: #fff;
    font-size: 16px;
}

footer .cont .footer-navigation li {
    list-style: none;
    margin-bottom: 15px;
}

footer .cont .footer-navigation a:hover, footer .cont .footer-navigation a.active {
    color: #faa31a;
}

footer .footer-logo img {
      width: auto;
    height: 160px;
    margin-top: 20px;
}

footer .cont.f-nav {
    margin-left: 12px;
}


footer .cont.f-newsletter {
    margin-left: 40px;
}

footer .cont.f-newsletter p {
       font-size: 16px;
    margin: 0;
    padding-bottom: 20px;
}

footer .cont.f-newsletter > div {
    position: relative;
}

footer .cont.f-newsletter > div input[type="email"] {
    width: 100%;
    background: #fff;
    padding: 12px 15px;
    border-radius: 25px;
    border: none;
    color: #003647;
     outline:0px !important;
    -webkit-appearance:none;
    box-shadow: none !important;
}

footer .cont.f-newsletter > div input[type="email"]::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #252525 !important;
  font-size: 14px;
  opacity: 1; /* Firefox */
  font-weight: 500;
}

footer .cont.f-newsletter > div input[type="submit"] {
    position: absolute;
    right: 6px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 38px;
    width: 38px;
    font-size: 0;
    border: 0;
    background: #faa31a;
    border-radius: 50%;
      outline:0px !important;
    -webkit-appearance:none;
    box-shadow: none !important;
    transition: all .4s ease-in-out;
}

footer .cont.f-newsletter > div input[type="submit"]:hover {
    background: #1dbdef;
}


footer .cont.f-newsletter > div:after {
    content: "\f1d8";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    color: #fff;
    right: 16px;
    top: 11px;
    bottom: 0;
    font-size: 18px;
    pointer-events: none;
}

.countryCls ul {
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}

.countryCls ul li {
    list-style: none;
    color: #fff;
    font-size: 16px;
}

.countryCls h4{
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    text-transform: capitalize;
}


footer ul.footer-social {
    display: flex;
    margin-top: 25px;
}

footer ul.footer-social li {
    margin-right: 15px;
    list-style: none;
}

footer ul.footer-social li a {
    color: #fff;
}


footer ul.footer-social li a:hover {
    color: #faa31a;
}


.copyrights {
    background: #012f3e;
    padding: 12px 0px 5px 0px;
    font-weight: normal;
}

.copyrights p {
    margin: 0;
    color: #fff;
       font-size: 14px;
    letter-spacing: .5px;
}

.copyrights a {
    color: #faa31a;
}


.copyrights a:hover {
    color: #fff;
}

.copyrights a.back-top {
    position: absolute;
    right: 20px;
    top: -35px;
    height: 50px;
    width: 50px;
    background: #faa31a;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 50%;
}
.copyrights a.back-top:hover {
    background: #0b829f;
}

/* FOOTER END */

.home-banner .left p {
    display: none;
}

.home-banner .left .b-trans {
    margin-top: 60px;
}








/* 
  ##Device = HD Desktops
  ##Screen = 1600px to higher resolution desktops
*/

@media screen and (min-width: 1600px) {

.container, .container-fluid {
    width: 1570px;
  }
  

section.inner-banner {
    height: 750px;
}



  
} /* Dont delete this bracket! */ 








/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {

} /* Dont delete this bracket! */ 




/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/
@media (min-width: 1025px) and (max-width: 1280px) {

} /* 1025px to 1280px (Laptops, Desktops) Dont delete this bracket! */




/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) and (orientation:portrait) {

} /* 768px to 1024px (portrait) Dont delete this bracket! */




/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {


} /* 768px to 1024px (landscape) Dont delete this bracket! */




/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/
@media (min-width: 481px) and (max-width: 767px) {


} /* 481px to 767px (Landscape) Dont delete this bracket! */





/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 280px to 479px
*/
@media (min-width: 280px) and (max-width: 480px) {



} /* 280px to 479px (Portrait) Dont delete this bracket! */

/* Start Responsive */
@media (min-width: 1368px) and (max-width: 1368px) {
    .home-banner:before {
        height: 400px;
        width: 400px;
        right: 0;
    }
    section.home-testimonails:before, section.home-testimonails::after {
        display: none;
    }
    footer:after {
        right: 30px;
    }
    /* How-it-work */
    .how-it-works-main:before {
        display: none;
    }
    /* Drive Profile */
    .inner-banner:before {
        display: none;
    }
}
@media (max-width: 1280px) {
    .home-banner:before {
        display: none;
    }
    section.home-testimonails::before, section.home-testimonails:after {
        display: none;
    }
    footer:after {
        right: 100px;
    }
    /* Post-Request */
    .inner-banner:before {
        display: none;
    }
    /* New Pet Tips */
    .how-it-works-main:before {
        display: none;
    }
}
@media (max-width: 1199px) {
	/* 404 Page */
	.error-404.not-found {
		background-image: unset;
	}
	.not_found_inner {
	    max-width: 100%;
	}
    section.header-main {
        background-color: #003646;
    }
    .navbar-light .navbar-toggler {
        z-index: 9;
    }
    .btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show>.btn-secondary.dropdown-toggle:focus {
        box-shadow: unset;
    }
    .btn-secondary.focus, .btn-secondary:focus {
        box-shadow: unset;
    }
    /* .dropdown-menu.show {
        background-color: transparent !important;
    } */
    .dropdown-menu {
        min-width: 10rem;
    }
    .navbar-light .navbar-brand {
        z-index: 1;
    }
    .navbar-nav-scroll {
        max-height: unset !important;
        z-index: 1;
        padding-bottom: 15px;
    }
    .dropdown, .dropleft, .dropright, .dropup {
        z-index: 1;
    }
    header nav ul li.b-trans {
        margin: 5px 8px;
    }
    .home-banner {
        padding-top: 140px;
        position: relative;
    }
    .navbar-light .navbar-toggler-icon {
        background-image: unset;
        /* width: 100%; */
        height: 5px;
        background-color: #fff;
        transition: all 0.3s;
        backface-visibility: hidden;
        border-radius: 2px;
        position: relative;
    }
    span.navbar-toggler-icon:before, span.navbar-toggler-icon:after {
        width: 100%;
        height: 5px;
        background-color: #fff;
        transition: all 0.3s;
        backface-visibility: hidden;
        border-radius: 2px;
    }
    span.navbar-toggler-icon:after, span.navbar-toggler-icon:before {
        content: "";
        position: absolute;
        left: 0;
        top: -9px;
    }
    span.navbar-toggler-icon:after {
        top: 9px;
    }
    .navbar-light .navbar-toggler {
        border-color: transparent;
    }
    header .navbar-nav a {
        font-size: 12px !important;
    }
    header .navbar-brand img {
        width: auto;
        height: 50px;
        object-fit: cover;
    }
    .home-banner:before {
        display: none;
    }
    
    .home-banner .right .b-img {
        z-index: 0;
    }
    .home-about {
        padding: 90px 0 0px 0;
    }
    .home-about .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .nav-tabs a.nav-item {
        margin-bottom: 16px !important;
    }
    .cat-dog-form .below {
        grid-column-gap: 10px;
    }
    .below-txt {
        height: 180px;
        overflow-y: scroll;
        padding-right: 10px;
    }
    .home-about .left {
        padding-bottom: 250px;
    }
    .home-about .left:after {
        bottom: 60px;
        right: 0px;
    }
    .home-what-we-offer .cont span.icon {
        bottom: -120px;
    }
    section.home-testimonails::before, section.home-testimonails:after {
        display: none;
    }
    .home-testimonails .shape:after {
        width: 0;
        height: 0;
        border-left: 350px solid transparent;
        border-right: 350px solid transparent;
        border-top: 350px solid transparent;
        border-bottom: 335px solid #e9f7ff;
    }
    footer:after {
        right: 100px;
        height: 250px;
        width: 200px;
    }
    footer .col-md-3, footer .col-md-2, footer .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .footer-logo {
        text-align: center;
    }
    .cont.f-about {
        text-align: center;
        margin-top: 50px;
    }
    footer .cont.f-nav {
        margin: 30px 0;
        text-align: center;
    }
    footer .cont.f-nav ul.footer-navigation {
        display: flex;
        justify-content: center;
    }
    
    footer .cont.f-nav ul.footer-navigation li {
        margin: 0 10px;
    }
    footer .cont.f-newsletter {
        margin-left: 0;
        text-align: center;
    }
    .copyrights p {
        text-align: center;
    }
    /* Post-Request */
    section.inner-banner {
        height: 350px;
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
    }
    .inner-banner:before {
        display: none;
    }
    section.inner-banner .cont h2 {
        font-size: 40px;
    }
    .cont.append-alert .text-center.b-trans.er-m {
        width: 46% !important;
    }
    /* how-it-works */
    .how-it-works-main:before , .how-it-works-main:after{
        display: none;
    }
    .head h2 {
        font-size: 35px;
    }
    .how-it-works-main .row.right .col-md-6, .how-it-works-main .row.left .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .how-it-works-main .row.left {
        display: flex;
        flex-flow: wrap-reverse;
    }
    .how-it-works-main .row .img {
        position: relative;
    }
    .how-it-works-main .row img {
        max-width: 100%;
    }
    .how-it-works-main .head p, .how-it-works-main.new-pet-tips .head p {
        width: 90%;
    }
    .how-it-works-main .cont:before {
        display: none;
    }
    .how-it-works-main .row .cont-inner {
        padding-top: 20px;
    }
    /* Driver */
    .drivers-main .head p {
        width: 90%;
    }
    .drivers-main .cont img {
        width: 140px;
        height: 140px;
    }
    .drivers-main .cont h2 {
        font-size: 20px;
        height: 80px;
    }
    .drivers-main .drivers-list .cont.yellow-half.blue-half {
        position: relative;
    }
    .drivers-main .cont:before {
        top: 40px;
        left: -30px;
    }
    .drivers-main .cont:after {
        height: 20px;
        width: 40px;
        top: 150px;
        right: -20px;
    }
    /* Driver profile*/
    .img.img-cus img {
        width: 150px;
        height: 150px;
        object-fit: cover;
        margin-bottom: 15px;
    }
    .row.staus {
        display: flex !important;
        justify-content: end;
        margin-top: unset !important;
        margin-left: auto !important;
    }
    h2.pb-2.col-md-4.hed {
        position: relative;
        display: inline;
    }
    .row.driver-profile-about-sec {
        margin-top: 10px !important;
    }
    .about-sec, .offer-sec {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .portfolio-img span {
        margin-left: auto !important;
    }
    .driver-profile-main .slick-slide img {
        width: 100%;
        object-fit: cover;
    }
    .row.align-items-center.border-line .col-md-4 span:nth-child(1) {
        margin-left: 0px;
    }
    /* Faqs */
    .row.faqs .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .row.faqs #main {
        margin: 0px 0 0;
    }
    .row.faqs #main #faq .card .card-header .btn-header-link {
        padding-right: 25px;
        position: relative;
    }
    .row.faqs #main #faq .card .card-header .btn-header-link:after {
        position: absolute;
        top: 18px;
        right: 10px;
    }
    /* Login */
    .log-reg-main .cont {
        width: 75%;
    }
    /* Register */
    .cd-tabs nav {
        margin-left: auto !important;
    }
    ul.cd-tabs-navigation {
        display: flex;
        justify-content: center;
    }
    .cd-tabs-navigation li {
        float: unset !important;
    }
    .cd-tabs {
        max-width: 100% !important;
        min-width: 90% !important;
    }
    /* customer */
    .resources-main .head p {
        width: 90%;
    }
    .resources-main .col-md-7, .resources-main .col-md-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .resources-main .col-md-5 {
        margin-bottom: 50px;
    }
    .resources-main .right .cont {
        margin-top: 50px;
    }
    .resources-main .left .cont .text-center.b-trans {
        width: auto;
        display: table;
    }
	/* Request-transport */
    .row.service-req-form-row3 { margin-bottom: 0px; }
    .home-banner .right .b-img.two::before{display: none;}
    .home-what-we-offer .head p { width: 100%;}
    .service-req-form-row3 .slick-next{display: none !important;}
    .service-req-form-row3 .slick-prev{display: none !important;}
    /* .slick-prev, .slick-next{display: none !important;} */
    .cusSliderInner {padding: 20px 0px;}
    .home-banner .left h2 {font-size: 26px;}
    .home-banner .left .b-trans { margin-top: 20px; }
}
@media (max-width: 1024px) {
    header .navbar-nav a {
        font-size: 12px;
    }
    .home-banner .banner-social {
        right: 20px;
    }
    .copyrights a.back-top {
        right: 10px;
        top: -45px;
    }
    .home-what-we-offer .cont span.icon {
        bottom: -40px;
    }
}
@media (max-width: 924px) {
	/* 404 Page */
	.error-404.not-found {
		height: 100%;
		padding: 50px 0 100px !important;
	}
    .dropdown.show {
        text-align: center;
    }
    
    .dropdown-menu.show {
        text-align: center;
    }
    header .navbar-nav a {
        font-size: 16px !important;
    }
    .home-banner .banner-social {
        top: 0px;
    }
    .home-what-we-offer .cont span.icon {
        bottom: -120px;
    }
    .home-what-we-offer .cont h4 {
        margin-bottom: 20px;
    }
    .dropdown-menu.show {
        background-color: transparent !important;
    }
    /* Post-Request */
    section.inner-banner {
        height: 300px;
    }
    section.inner-banner .cont h2 {
        font-size: 35px !important;
    }
    .modal {
        overflow-x: hidden;
        overflow-y: auto;
    }
    
}
@media (min-width: 800px) and (max-width: 800px) {
    /* .home-banner .banner-social {
        top: -550px;
    } */
}
@media (min-width: 768px) and (max-width: 991px) {
    /* .home-banner .banner-social {
        top: 250px;
    } */
    
    section.drivers-main .col-md-2.drivers-list {
        width: 33.333333%;
        flex: unset;
        max-width: 100%;
    }
    .drivers-main .cont img {
        width: 100%;
        height: 200px;
        border-radius: 50%;
    }
    .verification-driver-profile h4 {
        font-size: 14px;
    }
    .drivers-proff .row.staus .col-md-4.d-flex {
        padding-left: 0px;
    }
    .home-banner .left h2 { font-size: 23px; }
    .home-about { padding: 50px 0 0px 0; }
    .cat-dog-form .bg.yellow-half:before {top: -10px; }
    .cat-dog-form .cont span.pick-up:after, .cat-dog-form .cont span.drop-off:after { right: 8px;}
    footer { background-size: cover; background-position: top center; }
}
@media (max-width: 767px) {
    footer { background-size: cover; background-position: top center; }
    .cat-dog-form .cont span.pick-up:after, .cat-dog-form .cont span.drop-off:after{    right: 8px;}
    .cat-dog-form .bg.yellow-half:before { top: -10px; }
    .drivers-proff .row.staus .col-md-4.d-flex {
        padding-left: 0px;
    }
    .verification-driver-profile h4 {
        font-size: 14px;
    }
    
	/* 404 Page */
	.error-404.not-found h1 {
		font-size: 150px;
	}
	.page-header p {
		font-size: 20px !important;
		margin-bottom: 40px;
	}
    .home-banner {
        background-image: unset;
        padding-bottom: 35px;
        background-color: #003646;
    }
    .home-banner .left h2 {
        font-size: 30px;
    }
    .home-banner .left p {
        font-size: 14px;
    }
    .home-banner .left { padding-top: 10%; padding-bottom: 20px; text-align: center; padding-left: 15px; padding-right: 15px; }
    .home-what-we-offer .head p { width: 100%;}
    .home-what-we-offer-row2 .cont p { text-align: center; height: auto; overflow-y: auto; }
    .home-banner .banner-social {
        display: none;
    }
    .home-about {
        padding: 30px 0 0px 0;
    }
    .head h2 {
        font-size: 30px;
    }
    .home-about .left {
        padding-bottom: 300px;
    }
    .home-about .left:after {
        width: 100%;
    }
    .home-about .right:before {
        height: 100%;
        width: 90%;
    }
    .home-about .right img {
        height: auto;
        width: 90%;
        margin: 0 auto;
    }
    .home-what-we-offer {
        padding-top: 50px;
    }
    .home-what-we-offer .cont span.icon {
        bottom: -190px;
    }
    .cat-dog-form .bg {
        background-image: unset;
        background-color: rgb(9 108 131 / 90%);
    }
    .cat-dog-form nav div {
        display: block;
    }
    .cat-dog-form .cont form {
        display: grid;
        grid-template-columns: 1fr;
    }
    .custom-setting {
        display: block !important;
        margin: 0 auto;
    }
    .cat-dog-form .below {
        padding: 40px 0;
    }
    .cat-dog-form .below .icon {
        text-align: center;
    }
    .cat-dog-form .below .icon:before {
        left: 0px;
    }
    .home-testimonails .slider-nav-thumbnails li:nth-child(1) {
        bottom: -110px;
        left: 60px;
    }
    .home-testimonails .slider-nav-thumbnails li:nth-child(5) {
        bottom: -110px;
        right: 60px;
    }
    .home-testimonails .cont > img {
        margin-bottom: 30px;
    }
    .home-testimonails .cont p {
        width: 90%;
    }
    .home-testimonails .shape:after {
        width: 100%;
        height: 100%;
        border-left: 0px solid transparent;
        border-right: 0px solid transparent;
        border-top: 0px solid transparent;
        border-bottom: 0px solid #e9f7ff;
        background-color: #e9f7ff;
    }
    footer {
        background-image: unset;
        padding: 50px 0 70px 0;
        margin-top: 50px;
        background-color: #02394b;
        border-top: 20px solid #e5ebec;
    }
    footer .cont.f-nav ul.footer-navigation {
        display: grid;
        grid-template-columns: 1fr;
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
    footer .cont.f-nav ul.footer-navigation li {
        margin: 0 0px;
    }
    .copyrights a.back-top {
        right: 0px;
        top: -45px;
    }
    .copyright-txt {
        display: flex;
        align-items: center;
    }
    .copyright-txt .col-md-10 {
        width: 90%;
    }
    
    .copyright-txt .col-md-2 {
        width: 10%;
    }
    .copyright-txt .col-md-2 ul.footer-social {
        padding-top: 10px;
        display: flex;
        justify-content: center;
    }
    .copyright-txt .col-md-2 ul.footer-social li {
        list-style: none;
    }
    .validation-errors ul {
        width: 100% !important;
        padding-top: 20px;
    }
    .validation-errors ul li {
        list-style: disc;
        list-style-position: inside;
    }
    .modal-login {
        width: 90% !important;
        margin: 0 auto;
    }
    .modal {
        overflow-x: hidden;
        overflow-y: auto;
    }
    /* Post-Request */
    section.inner-banner {
        height: 200px;
        margin-bottom: 30px;
    }
    section.inner-banner .cont h2 {
        font-size: 25px !important;
    }
    .resources-main .left .cont {
        background-image: unset;
        background-color: rgb(9 108 131 / 90%);
    }
    .resources-main .left .cont form {
        grid-template-columns: 1fr;
    }
    .resources-main .left form span:nth-child(1) {
        grid-area: unset;
    }
    .resources-main .left form span:nth-child(2) {
        grid-area: unset;
    }
    .resources-main .left form span:nth-child(3) {
        grid-area: unset;
    }
    .resources-main .left form span:nth-child(4) {
        grid-area: unset;
    }
    .resources-main .left form span:nth-child(5) {
        grid-area: unset;
    }
    .cont.append-alert .text-center.b-trans.er-m {
        width: auto !important;
        margin: 0 auto !important;
    }
    /* how-it-works */
    .how-it-works-main .left .img::before {
        left: 0;
    }
    .how-it-works-main .right .img::before {
        right: 0;
    }
    .how-it-works-main .row .cont-inner {
        padding-left: 15px;
        padding-right: 15px;
    }
    .how-it-works-main .head {
        padding: 15px 15px 0;
    }
    /* Driver */
    .drivers-main .drivers-list .cont.yellow-half.blue-half {
        display: table;
        margin: 0 auto;
        width: 50%;
    }
    .drivers-main .cont:before {
        left: 0;
    }
    .drivers-main .cont .img {
        margin: 0 auto;
        display: table;
        width: auto;
    }
    /* Driver profile*/
    .img.img-cus {
        text-align: center;
    }
    .img.img-cus img {
        margin-bottom: 10px;
    }
    .row.staus {
        margin-top: 20px !important;
    }
    .row.staus .col-md-4 {
        margin: 10px auto;
    }
    .about-heading {
        font-size: 20px !important;
    }
    .row.align-items-center.border-line {
        display: flex;
        flex-direction: column-reverse;
    }
    h2.pb-2.col-md-4.hed {
        font-size: 20px;
        text-align: center;
        margin: 0 auto;
        display: table;
    }
    .col-md-12.about-sec .border-line {
        padding: 0 15px;
    }
    .row.staus .col-md-4 h4 {
        font-size: 18px;
    }
    .offer-sec li h4 {
        font-size: 18px;
    }
    .heading-custom h4 {
        margin-left: 0 !important;
    }
    .heading-custom p.ml-2 {
        margin-left: 0 !important;
    }
    .offer-sec {
        grid-template-columns: 1fr 1fr;
    }
    .offer-sec span.icon {
        display: grid;
        grid-template-columns: max-content;
    }
    .driver-profile-main .slick-slide img {
        height: 120px;
        object-fit: cover;
    }
   
    /* Login */
    .log-reg-main .cont {
        width: 100%;
    }
    /* Register */
   .form-fild  input#first_name-cus,
   .form-fild #phone,
   .form-fild #last_name-cus,
   .form-fild #password-confirm-cus,
   .form-fild #zipcode,
   .form-fild #password-cus,
   .form-fild #dob-cus,
   .form-fild #phone,
   .form-fild #city,
   .form-fild #state,
   .form-fild #file,
   .form-fild #apartment {
        width: 100% !important;
    }
    /* customer */
    .resources-main .left .cont h2 {
        font-size: 20px;
    }
    .resources-main .left .cont .b-trans {
        width: auto;
        display: table;
    }
    /* Request Trasport */
    .row.rt-sec-row2 {
        padding-bottom: 120px;
    }
    .row.service-req-form-row3 {
        margin-bottom: -50px;
        padding-bottom: 0;
    }
    .drivers-main .cont:after {
        right: 0px;
    }

    .cusSliderInner {grid-template-columns: 1fr; }
    /* .home-banner .slick-next{right: 15px; display: none !important;}
    .home-banner .slick-prev {left: 15px; display: none !important;} */
    .home-banner .right .b-img.two::before{display: none;}
    .cat-dog-form .cont span {  height: 35px; }

}

@media (max-width: 479px) {
	/* 404 Page */
	.error-404.not-found h1 {
		font-size: 120px;
	}
	.page-header p {
		font-size: 18px !important;
	}
    .home-banner .left h2 {
        font-size: 20px;
    }
    .head h2 {
        font-size: 20px;
    }
    .home-what-we-offer .cont span.icon {
        bottom: -100px;
    }
    .cat-dog-form .below {
        grid-row-gap: 10px;
        grid-template-columns: 1fr;
    }
    .cat-dog-form .below .icon {
        margin: 0 auto;
        width: 50%;
    }
    .cat-dog-form .below h4 {
        text-align: center;
    }
    .below-txt {
        height: 150px;
    }
    .cat-dog-form .below p {
        text-align: center;
    }
    .home-testimonails {
        padding: 40px 0 80px;
    }
    .home-testimonails .head p {
        width: 90%;
    }
    .home-testimonails .slider-nav-thumbnails {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 10px;
        grid-row-gap: 15px;
        margin: 0 auto;
        display: none;
    }
    .home-testimonails .slider-nav-thumbnails li:nth-child(1), .home-testimonails .slider-nav-thumbnails li:nth-child(5) {
        bottom: unset;
        left: unset;
        right: unset;
    }
    .home-testimonails .slider-nav-thumbnails li:nth-child(2), .home-testimonails .slider-nav-thumbnails li:nth-child(4) {
        bottom: unset;
    }
    .home-testimonails .cont > img {
        margin-bottom: 0;
    }
    .home-testimonails .shape:after {
        border-radius: unset;
    }
    footer {
        padding: 50px 0 20px 0;
    }
    footer .cont.f-nav ul.footer-navigation {
        grid-template-columns: 1fr;
    }
    .copyrights a.back-top {
        right: 2px;
        top: -23px;
        height: 30px;
        width: 30px;
    }
    /* Post-Request */
    section.inner-banner {
        height: 150px;
    }
    section.inner-banner .cont h2 {
        font-size: 20px !important;
    }
    /* how-it-works */
    .how-it-works-main .row {
        padding-bottom: 0;
    }
    /* Driver */
    .drivers-main .drivers-list .cont.yellow-half.blue-half {
        width: 70%;
    }
    .drivers-main .cont h2 {
        font-size: 18px;
        height: auto;
        padding-bottom: 15px;
    }
    /* Driver profile*/
    .verification-driver-profile {
        padding: 15px;
    }
    .row.staus .col-md-4 h4 {
        font-size: 16px;
        margin-bottom: 0;
    }
    .offer-sec li h4 {
        font-size: 16px;
    }
    .offer-sec {
        grid-template-columns: 1fr;
    }
   .driver-profile-main .slick-slide img {
        height: 100px;
        object-fit: contain;
    }
    /* Register */
    ul.cd-tabs-navigation {
        display: block;
    }
    .cd-tabs-navigation li {
        display: block !important;
        width: 100% !important;
        max-width: 90% !important;
        margin-bottom: 10px !important;
    }
    .btn1 button#submit1, .btn1 button#submit2 {
        width: 60% !important;
    }
     /* customer */
     .resources-main .head p {
        word-break: break-word;
    }
    .resources-main .right h2 {
        font-size: 20px;
        text-align: center;
    }
    .resources-main .right .cont ul li {
        padding-left: unset;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 90px;
    }
    .resources-main .right .cont ul li:before {
        left: auto;
        right: auto;
        top: -100px;
    }
    .resources-main .right .cont ul li.address:before {
        top: -100px;
    }
    /* Request Trasport */
    .row.rt-sec-row2 {
        padding-bottom: 150px;
    }
    

}
@media (max-width: 320px) {
	.home-banner .left h2 {
        font-size: 19px;
    }
    .home-about .left {
        padding-bottom: 250px;
    }
    .home-about .left:after {
        height: 150px;
    }
    .home-what-we-offer .cont span.icon {
        bottom: -50px;
    }
    .cat-dog-form nav div a {
        padding: 5px 30px  !important;
    }
    .home-testimonails .cont .testi-content {
        height: 400px;
        overflow-y: scroll;
    }
    .head h2 {
        font-size: 18px;
    }
    .copyright-txt .col-md-10 {
        width: 88%;
    }
    /* Post-Request */
    section.inner-banner {
        height: 120px;
    }
    section.inner-banner .cont h2 {
        font-size: 18px !important;
    }
    input[type="file"] {
        font-size: 9px !important;
    }
    /* Driver */
    .drivers-main .drivers-list .cont.yellow-half.blue-half {
        width: 80%;
    }
    /* Driver Profile */
    .driver-profile-main .slick-slide img {
        object-fit: contain;
    }
    /* Login */
    .btn-primary {
        font-size: 14px;
    }
    /* Register */
    
}

/* End Responsive */

section.driver-profile-main h2.hed {
    font-size: 28px;
    padding: 0px;
}
  section.driver-profile-main .row.staus .color-icon {
    font-size: 22px;
  }
  /* section.driver-profile-main .row.staus {
      margin-top: -150px;
  } */
  .img-cus img {
    border-radius: 50%;
    object-fit: cover;
}
.drivers-proff {
    padding-top: 30px;
}