/*FONTS*/ 
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');

/*RESET CSS*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

article,aside,details,figcaption,figure, footer,header,hgroup,menu,nav,section {
  display:block;
}

ul, li {
    list-style-type: none;
}

/*VARIABLES*/
:root {	
  
  --primary-font: 'PT Sans', sans-serif;  
	--primary-color: #221e1f;
  --primary-font-size: 20px;
    
  --btn-color: #010101;
  --links: #657687;  
  
  --white: #fff;
  --black: #000;
  --orange: #f4c914;
  --blue-dark: #005ba2;
  --blue-light: #007cc2;
  --blue-ex-light: #f2fbfe;
  --blue-ex-light-1: #e1f6fe;
	--blue-ex-light-2: #ddf5fd;
  --green: #1bd679;
  --green-dark: #16b566;
  --yellow: #fde42a;
  --red: #d11614;
  
  --h1: 53px;
  --h2: 36px;
  --h3: 33px;
  --h4: 28px;
  --h5: 29px;
  --h6: 26px;
  
  --price-font-size: 66px;
  --pets-font-size: 50px;
  --price-font-size-small: 24px;
  
  --rating-font-size: 30px;
  
}

/*GENERAL STYLES*/
body {
	font-family: var(--primary-font);
	color: var(--primary-color);
	font-size: var(--primary-font-size);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;	
}
a, a:hover {
	text-decoration: none;
	-webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  color: var(--links);
}
a:hover {
  color: var(--black);
}
.animation {
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}
.container {
  width: 100%;
  padding: 0 15px;
  max-width: 1300px;
  margin: 0 auto;
}
.large {
  max-width: 1490px;
}
.small {
  max-width: 1240px;
}
.xsmall {
  max-width: 1140px;
}
.contact {
  max-width: 607px;
}
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  position: relative;
  padding: 0 15px;
}
.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
.col-8 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}
.right {
  text-align: right;
}
.center {
  text-align: center;
}
.is-uppercase {
  text-transform: uppercase;
}
.is-capitalize {
	text-transform: capitalize !important;
}
.as-center {
  -ms-flex-item-align: center;
  align-self: center;
}
.as-end {
  -ms-flex-item-align: end;
  align-self: flex-end;
}
.img-fluid {
  width: 100%;
  max-width: 100%;
}
.zi-1 {
  z-index: 1;
}
.btn {
  background: var(--green);
  color: var(--btn-color);
  min-width: 257px;
  text-align: center;
  line-height: 50px;
  font-weight: bold;
  display: inline-block;
  text-transform: uppercase;
}
.btn:hover {
  background: var(--green-dark);
  color: var(--btn-color);
}
header .btn {
  min-width: 210px;
}
.is-position-relative {
  position: relative;
}
.img-2x {
  width: 50%;
}
h1 {
  font-size: var(--h1);
}
h2 {
  font-size: var(--h2);
  margin-bottom: 20px;
}
h3 {
  font-size: var(--h3);
}
h4 {
  font-size: var(--h4);
}
h5 {
  font-size: var(--h5);
}
h6 {
  font-size: var(--h6);
}
.is-white {
  color: var(--white);
}
.is-blue-bg {
  background: var(--blue-light);
}
.is-green-bg {
  background: var(--green);
}
.is-blue-dark-bg {
  background: var(--blue-dark);
}
.is-yellow {
  color: var(--yellow);
}
strong {
  font-weight: bold;
}
.d-inline-block {
  display: inline-block;
}

/*PRELOADER*/
.preloader {
	background: var(--white);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
}
.lds-ripple {
  display: inline-block;  
  width: 80px;
  height: 80px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);	
}
.lds-ripple div {
  position: absolute;
  border: 4px solid var(--blue-dark);
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

/*HEADER*/
header {
  padding: 20px 0;
}
.logo img {
  width: 211px;
}

/*CONTENT*/
.banner {
  padding: 30px 0 90px;
  background: var(--blue-ex-light) url("../images/banner-bg.jpg") repeat-x top center;
}
.banner-txt {
  padding-top: 70px;
}
.rating {
  font-size: var(--rating-font-size);
  color: var(--orange);
  margin: 35px 0;
  font-weight: bold;
}
.rating img {
  width: 199px;
  margin: 0 10px 0 0;
  top: 3px;
}
.section-2 .col {
  padding-top: 70px;
  padding-bottom: 130px;
	position: relative;
}
.section-2 .col .btn {
	position: absolute;
	left: 50%;
	bottom: 70px;
	transform: translateX(-50%);
}
.section-2::before, .section-2::after, .section-5::before, .section-5::after, .section-9::before, .section-9::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: var(--blue-dark);
}
.section-2::after, .section-5::after, .section-9::after {
  left: auto;
  right: 0;
  background: var(--blue-light);
}
.section-2 img {
  width: 383px;
  margin: 50px 0;
}
.section-3 {
  padding: 70px 0;
  border-bottom: 1px solid #c0c7ca;
}
.section-3 img {
  max-width: 546px;
}
.section-4 {
  background: var(--blue-ex-light);
  padding: 125px 0 100px;
}
.section-4 .col {
  padding-top: 30px;
}
.section-4 .row:nth-child(2) .col {
  padding-top: 50px;
}
.price-wrapper {
  background: var(--white);
  border: 3px solid #c0c7ca;
  padding: 0 33px 190px;
}
.price-wrapper.bast-deal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 98px;
  background: var(--yellow);
}
.price-wrapper:hover {
  border-color: var(--black);
}
.price-wrapper .price {
  font-size: var(--price-font-size);
  height: 130px;
  text-align: center;  
  font-weight: bold;
  border-radius: 46px 0;
  display: flex;
  -webkit-box-align: center!important;
  -ms-flex-align: center!important;
  align-items: center!important;
  margin-top: -82px;
  flex-wrap: wrap;
}
.price-wrapper .price span {  
  flex-grow: 1;
  flex: 0 0 100%;
  line-height: normal;
  
}
.price-wrapper .price .txt-small {
  font-size: var(--price-font-size-small);
  margin: -30px 0 0;
}
.price-wrapper h5 {
  background: var(--yellow);
  padding: 6px;
}
.price-wrapper .pets {
  font-size: var(--pets-font-size);
  color: var(--green);
  text-transform: uppercase;
  text-align: center;
  margin: 20px 0 0;
}
.price-wrapper h2 {
  line-height: 54px;
  border-bottom: 3px solid #cccccc;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.price-wrapper h2 img {
  margin-top: 30px;
}
.price-wrapper ul li {
  display: block;
  position: relative;
  padding-left: 52px;
  font-weight: bold;
  margin: 15px 0 0;
}
.price-wrapper ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 31px;
  height: 22px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='31px' height='22px'><path fill-rule='evenodd' fill='rgb(27, 214, 121)' d='M28.051,0.024 C27.507,0.040 26.990,0.276 26.610,0.684 L11.136,16.884 L3.379,10.602 C2.464,9.859 1.147,10.034 0.439,10.992 C-0.271,11.951 -0.104,13.330 0.812,14.074 L10.036,21.536 C10.869,22.212 12.053,22.136 12.800,21.357 L29.571,3.797 C30.403,2.955 30.426,1.565 29.621,0.694 C29.211,0.250 28.641,0.006 28.051,0.024 L28.051,0.024 Z'/></svg>") no-repeat left top;
}
.price-wrapper .btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100px;
  width: 55%;
}
.price-wrapper .bottom-txt {
  position: absolute;
  width: 100%;
  bottom: 32px;
  left: 0;
  text-align: center;
  font-style: italic;
}
.price-wrapper > img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 202px;
}
.section-5::before, .section-5::after {  
  background: var(--blue-light);
}
.section-5::after { 
  background: var(--blue-dark);
}
.section-5 .col {
  padding-top: 70px;
  padding-bottom: 150px;
  padding-right: 75px;
	position: relative;
}
.section-5 .col .btn {
	position: absolute;
	left: 50%;
	bottom: 70px;
	transform: translateX(-50%);
}
.section-5 .col:last-child {
  padding-right: 30px;
  padding-left: 75px;
}
.heading-has-img {
  padding-left: 265px;
  padding-top: 30px;
  margin-bottom: 40px;
  min-height: 230px;
}
.heading-has-img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 230px;
  width: auto;
}
.section-5 .col p {
  margin-bottom: 30px;
}
.section-5 .col .btn {
  margin-top: 30px;
}
.section-6 {
  padding: 70px 0;
}
.section-6 .section-title {
  display: inline-block;
  width: 510px;
  height: 199px;
  background: url("../images/img-7.png") no-repeat center center;
  background-size: contain;
}
.section-6 .section-title h2 {
  position: absolute;
  top: 82px;
  left: 72px;
}
.section-6 .col-3 {
  margin-top: 60px;
}
.section-6 .steps {
  padding-left: 145px;
  padding-top: 30px;
  min-height: 194px;
}
.section-6 .steps img {
  position: absolute;
  top: 0;
  left: 0;
}
.section-6 .steps span {
  font-size: 36px;
  font-weight: bold;
  color: var(--blue-light);
  display: block;
}
.section-6 .steps h4 {
  max-width: 270px;
}
.section-6 p {
  margin: 30px 0 0;
}
.section-6 .col:nth-child(3) .steps {
  padding-left: 160px;
}
.section-6 .col:nth-child(4) .steps {
  padding-left: 175px;
}
.section-6 .btn {
  margin-top: 70px;
  min-width: 257px;
}
.section-7 {
  padding: 60px 0 250px;
  background: var(--blue-ex-light-1);
}
.section-7 h2 img {
  position: absolute;
  top: -140px;
  left: -315px;
  width: 301px;
}
.section-7 .b-list {
  margin: 40px 0 0;
  font-size: 24px;
  color: var(--black);
  font-weight: bold;
}
.section-7 .b-list li {
  margin: 10px 0 0;
  position: relative;
  padding-left: 34px;
}
.section-7 .b-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
}
.section-7 .btn-row {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  text-align: center;
  height: 221px;
  background: url("../images/img-13.png") no-repeat center center;
}
.section-7 .btn-row .btn {  
  min-width: 318px;
  margin-top: 100px;
}
.section-8 {
  padding: 90px 0;
}
.section-8 .col-4 {
  margin: 40px 0 20px;
}
.section-8 h3 {
  margin: 20px 0;
}
.section-8 p {
  display: inline-block;
  max-width: 450px;
}
.section-8 .btn {
  margin-top: 50px;
}
.section-9 {
  padding: 65px 0 223px;
}
.section-9::after {
	background: var(--blue-ex-light-2);
}
.section-9 .row img {
  max-width: 490px;
  margin-bottom: 30px;
}
.section-9 .col-6:first-child {
  padding-right: 70px;
}
.section-9 .col-6:last-child {
  padding-left: 70px;
}
.section-9 .bottom-img {
	position: absolute;
	left: 50%;
	bottom: -250px;
	transform: translateX(-50%);
}
.section-10 {
  padding: 70px 0 280px;
  background: url("../images/img-14.png") no-repeat center bottom;
}
.section-10 h2 {
  margin: 0;
}
.input-group {
  margin: 29px 0 0;
}
.input-group input, .input-group textarea {
  width: 100%;
  padding: 9px 15px;
  border: 1px solid #bcbec0;
  font-size: var(--primary-font-size);
  color: var(--black);
  font-family: var(--primary-font);
  outline: none;
}
.input-group input::placeholder, .input-group textarea::placeholder {
  color: var(--black);
  opacity: 1;
}
.input-group input:focus, .input-group textarea:focus {
  border-color: var(--blue-light);
}
.input-group textarea {
  height: 100px;
  resize: none;
}

/*FOOTER*/
footer {
  border-top: 3px solid #cbcbcb;
  padding: 70px 0 40px;  
}
footer img {
  width: 215px;
}
footer h6 {
 color: var(--blue-light);
  margin-bottom: 30px;
}
footer p, .copyright {
  color: #657687;
}
.copyright {
  font-size: 16px;
  margin-top: -30px;
  z-index: -1;
}

.tooltip {
  position: relative;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 100%;
  background: rgba(0,0,0,0.8);
  color: #fff;
  text-align: center;
  padding: 15px;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
	top: 0;
  left: 0;
  transform: translateY(-110%);
	border-radius: 5px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltip .tooltiptext:after {
	top: 100%;
	left: 18%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(136, 183, 213, 0);
	border-top-color: rgba(0,0,0,0.8);
	border-width: 10px;
	margin-left: -10px;
}

/*RESPONSIVE*/
@media (max-width: 1450px) {
  
  /*VARIABLES*/
  :root {	

    --primary-font-size: 20px;

    --h1: 53px;
    --h2: 40px;
    --h3: 30px;
    --h4: 27px;
    --h5: 29px;
    --h6: 26px;

    --price-font-size: 71px;
    --pets-font-size: 62px;
    --price-font-size-small: 30px;
    
    --rating-font-size: 30px;

  }
  
  .price-wrapper .price {
    height: 140px;
    margin-top: -68px;
  }
  .price-wrapper .price span {
    line-height: 97px;
  }
  
  .section-5 .col-6:last-child img {
    width: 200px;
  }
  
  .section-5 .col-6:last-child .heading-has-img {
    padding-left: 240px;
  }
  
  .col-3 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .section-6 .section-title h2 {  
    top: 81px;
    left: 83px;
  }
  
  .section-4 {
    padding-top: 115px;
  }
	
	.price-wrapper.bast-deal::before {
		height: 122px;
	}
  
}

@media (max-width: 1300px) {
  .heading-has-img, .section-5 .col-6:last-child .heading-has-img {
    padding: 0;    
  }
  .heading-has-img img {
    position: relative;
    width: auto;
    height: 200px;
    margin-bottom: 20px;
  }
  .section-2 img {
    width: 300px;
  }
  .heading-has-img {
    margin-bottom: 30px;
  }  
  .section-7 .b-list {
    font-size: 24px;
  }
}

@media (max-width: 1199px) {
  .banner {
    padding: 60px 0;
  }
  .price-wrapper {
    padding: 0 30px 190px;
  }
}
@media (max-width: 991px) {
  .col-6, .col-5, .col-7, .col-4, .col-3 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .banner .banner-txt, .section-3, .section-5, .section-9, footer {
    text-align: center;
  }
	.banner {
		padding-top: 30px;
	}
  .banner .col-6:last-child img {
    max-width: 550px;
    margin-top: 40px;    
  }
  .rating {
    margin: 10px 0 25px;
  }
  .section-2 .col, .section-3 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section-2 .col:first-child, .section-5 .col:first-child {
    background: var(--blue-dark);
  }
  .section-2 .col:last-child, .section-5 .col:last-child {
    background: var(--blue-light);
  }
  .section-2::before, .section-2::after, .section-5::before, .section-5::after, .section-7 h2 img, .section-9::before, .section-9::after {
    display: none;
  }
  .section-2 img {
    margin: 30px 0;
  }
  .section-3 img, .section-9 img {
    max-width: 480px;
    margin-bottom: 30px;
  }
  .section-4 {
    padding: 95px 0 0;
  }
  .price-wrapper {
    margin-bottom: 70px;
    text-align: center;
  }
  .section-5 .col {
    padding: 50px 15px !important;
  }
  .section-7 .col-6:last-child .b-list {
    margin-top: 0;
  }
  .copyright {
    margin-top: 20px;
  }
  footer, .section-6, .section-8 {
    padding: 50px 0;
  }
  .section-6 .section-title {
    background: none;
    width: 100%;
    height: auto;
  }
  .section-6 .section-title h2 {
    position: relative;
    top: auto;
    left: auto;
  }
  .section-6 .col-3 {
    margin-top: 40px;
  }
  .section-8 .col-4 {
    margin-top: 20px;
  }
  .section-10 {
    padding-top: 40px;
  }
  .section-8 .btn {
    margin-top: 30px;
  }
  .section-7 {
    padding-bottom: 130px;
  }
  .section-7 .btn-row {
    height: 102px;
  }
  .section-7 .btn-row .btn  {
    margin: 0;
  }
  .logo img {
    width: 140px;
  }
  header .btn {
    min-width: 140px;
    height: 44px;
    line-height: 44px;
  }
  .price-wrapper ul li {
    text-align: left;
  }
  .section-4 .col-4:last-child .price-wrapper {
    padding-bottom: 180px;
  }
    .section-4 .col-4:last-child .price-wrapper .btn {
        /*bottom: 30px; Removed as Not needed for gear product*/ 

    }
	
	.section-9 {
		padding-bottom: 0;
		padding-top: 0;
	}
  .section-9 .col-6:first-child {
    padding-right: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
    background: var(--blue-dark);
  }
  .section-9 .col-6:last-child {
    padding-left: 15px;
		padding-top: 30px;
		background: var(--blue-ex-light-2);
		padding-bottom: 235px;
  }
	
	.section-2 .col .btn, .section-5 .col .btn {
		position: relative;
		left: auto;
		bottom: auto;
		transform: translateX(0);
	}
	
	.section-6 {
		text-align: center;
	}
	
	.section-6 .steps {
		display: inline-block;
    text-align: left;
	}
	.section-9 .bottom-img {
		margin: 0;
		bottom: -28px;
	}
}
@media (max-width: 767px) {
  
  /*VARIABLES*/
  :root {	

    --primary-font-size: 20px;

    --h1: 43px;
    --h2: 30px;
    --h3: 30px;
    --h4: 27px;
    --h5: 29px;
    --h6: 26px;

    --price-font-size: 61px;
    --pets-font-size: 62px;
    --price-font-size-small: 20px;
    
    --rating-font-size: 30px;

  } 
	
	.banner .right.as-center {
		display: none;
	}
	
	.banner {
		text-align: center;
	}
	
	.banner-txt {
		padding-top: 30px;
	}
  
  .section-7 .btn-row {
    background: none;
  }
  
  .price-wrapper .price {
    height: 100px;
    margin-top: -50px;
  }
  
  .section-4 {
    padding-top: 65px;
  }
  
  .price-wrapper .price span {
    line-height: 80px;
  }
  
  .section-7 {
    padding-top: 30px;
  }
  
  .section-7 h2, .section-10 h2 {
    margin: 0;
  }
  
  .section-10 {
    background-size: 300px;
    padding-bottom: 200px;
  }
  
  
  footer img {
    width: 180px;    
   }
  
  footer h6 {
    margin: 30px 0;
  }
  
  .banner {
    padding: 40px 0;
  }
	
	.price-wrapper .price .txt-small {
		margin: -40px 0 0;
	}
	
	.price-wrapper.bast-deal::before {
    height: 100px;
	}
	.section-9 .bottom-img {
		max-width: 300px;
		bottom: -19px;
	}
	.section-9 .col-6:last-child {
		padding-bottom: 175px;
	}
}