@font-face {
    font-family: SegoeScript;
    src: url(../fonts/SegoeScript.svg#SegoeScript) format('svg'), url(../fonts/SegoeScript.ttf) format('truetype'), url(../fonts/SegoeScript.woff) format('woff');
    font-weight: 400;
    font-style: normal
}


*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}
body{
	font-family: 'Poppins', sans-serif;
}
li{
	list-style:none;
}

a, a:hover{
	text-decoration:none;
}

img{
	max-width:100%;
}
button:focus {
	outline: none !important;
}
.form-control:focus {
	color: #1A1A1A;
	border-color: #1A1A1A;
	outline: 0;
	box-shadow: none;
}
header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 111;
	padding:10px 0;
	transition: all 1s ease-in-out;
}
.animateBan header {
	top: 0px;
}

.container-header {
	max-width: 90%;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}
.logo, .menu-box {
	padding: 0 15px;
}
.container-header .row {
	justify-content: space-between;
	align-items: center;
}
header .logo img {
	width: 160px;
	transition: 0.5s ease-in-out;
	object-fit: cover;
}
header.head_stiky .logo img {
	width: 100px;
}
.menu-box-btn {
	display: none;
	flex-wrap: wrap;
}
.box-btn {
	width: 80px;
	text-align: right;
}
.menu-box-btn .box-btn:first-child {
	width: 195px;
	margin-bottom: 15px;
}
.sub-btn {
	background: none;
	font-family: 'Big Shoulders Display', cursive;
	color: #1E1E1E;
	font-size: 17px;
	line-height: 60px;
	height: 60px;
	padding: 0;
	width: 190px;
	border-radius: 40px;
	cursor: pointer;
	font-weight: bold;
	position: relative;
	overflow: hidden;
	box-shadow:0 0 3px rgb(26 26 26 / 24%); 
	z-index:1;
	border:none !important;
} 
.sub-btn::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: -1;
	transition:1s ease-in-out;
} 
.sub-btn:hover::after {
	opacity: 0;
}   
.sub-btn::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	height:0;
	background: #0EA42C;
	transition: 0.3s ease-in-out;
	width:0;
	z-index: -1;
	border-radius: 40px;
	bottom:0;
}
.sub-btn:hover::before {
	height: 100%;
	width: 100%;
}
.sub-btn img {
	padding-left: 5px;
	width: 23px;
} 

#menu-show {
	background: #382E4221;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	border: none;
	position: relative;
	transition: 0.5s ease-in-out;
	cursor: pointer;
}
#menu-show:hover {
	background:#382E42;
	width:70px;
	height:70px;
}
#menu-show::before, #menu-show::after {
	content: "";
	position: absolute;
	left: 0;
	width:40%;
	height:2px;
	right: 0;
	margin: 0 auto;
	background: #000;
	transition: 0.5s ease-in-out;
}
#menu-show::before{
	top:50%;	
	transform: translateY(-50%);
}
#menu-show::after {
	bottom: 40%;
	transform: translateY(50%);
}
#menu-show:hover::before, #menu-show:hover::after{
	background: #fff;
}
#menu-show:hover::before{
	margin-left:10px;
}
#menu-show:hover::after{
	margin-right:10px;
}
#adopt-btn::before {
	display: none;
}
.main-menu li a#adopt-btn {
	width: 160px;
	border-color: #0EA42C;
	color: #0EA42C;
}
.menu-bar {
	position: static;
	right: 0;
	top: 0;
	height: auto;
	width: 100%;
	padding: 0;
	/*background-image: url(../images/mrnu-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 22222;
	background-color: #fff;
	text-align: right;
	transition: 0.5s ease-in-out;*/
}
.menu-bar.open-menu {
	right: 0;
}
#menu-hide {
	background: #382E42;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	cursor: pointer;
	display: none;
} 
#menu-hide img {
	width: 20px;
}
.menu-link {
	width: 100%;
	margin-top: 30px;
	text-align: center;
}
.main-menu li {
	display: inline-block;
	margin-right: 70px;
}
.main-menu.left-mene li {
	margin-right: 30px;
}
.main-menu li:last-child {
	margin-right: 0;
}
.main-menu {
	margin: 0;
}
.main-menu li a {
	display: inline-block;
	font-weight: bold;
	color: #1e1e1e;
	/*font-size: 24px;*/
	font-size: 18px;
	line-height: 29px;
	font-family: 'Big Shoulders Display', cursive;
	margin-bottom: 20px;
	padding-bottom: 10px;
	position: relative;
	transition: 0.5s ease-in-out;
}
header.head_stiky .main-menu li a {
	font-size: 18px;
}
.main-menu li a::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width:0;
	height: 2px;
	background:#0EA42C;
	transition: 0.5s ease-in-out;
}
.main-menu li a:hover::before {
	width: 100%;
}
.main-menu li a#donate-btn::before, .main-menu li a#cont-btn::before {
	display: none;
}
.logo-menu {
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 20px;
}   
.logo-menu-inner {
	display: none;
	justify-content: center;
	align-items: center;
}
.logo-menu-inner li {
	padding: 0 10px;
}
/* .protect-box-img img {
	opacity: 0.5;
} */
.main-menu li a.link-btn {
	border: 1px solid #1A1A1A;
	border-radius: 40px;
	width: 130px;
	height: 50px;
	line-height: 50px;
	background:#fff;
}
.logo2-box img {
	width: 60px;
}
.logo2-box a::before {
	display: none;
}
#select, .select-box-sub {
	width: 100%;
	height: 50px;
	padding: 0 10px;
	background: none;
	border: 1px solid #1A1A1A;
	border-radius: 10px;
	color: #1A1A1A;
	cursor: pointer;
}
#select.error, .select-box-sub.error {
	border-color: #f00;
}
header.head_stiky .main-menu li a.link-btn {
	height: 45px;
	line-height: 45px;
}
.main-menu li a#cont-btn {
	width: 160px;
	background:none;
	z-index:1;
}        
.main-menu li a#cont-btn:hover {
	color:#0EA42C;
	border-color:#0EA42C;
}

.main-menu li a#donate-btn {
	border-color:#0EA42C;
	color: #0EA42C;
}
.circal-img {
	position: relative;
}
#Top-section {
	background-image: url(../images/banner-bg1.jpg);
	background-size: cover;
	height: 100vh;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}
.containerTop {  
	position: absolute;
	left: 0;
	width: 100%;
	top: 55%;
	transform: translateY(-50%);
}  
.container {
	max-width: 1666px;
}       
.containerTop .row {
	justify-content: center;
} 
.font-box h1 {
	color: #FFFFFF;
	text-transform: uppercase;
	font-family: 'Big Shoulders Display', cursive;
	font-size: 100px;
	line-height: 70px;
	font-weight: bold;
	text-shadow: 0 0 10px #000;
	margin-bottom: 37px;
}
#explo-btn {
	font-size: 27px;
	margin-top: 20px;
	font-weight: bold;
	width: 170px;
	border-color: #fff;
	display: inline-block;
}
#explo-btn::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: -1;
	transition: 1s ease-in-out;
	top: 0;
	right: 0;
	margin: 0 auto;
	border-radius: 40px;
} 
#explo-btn:hover::after {
	opacity: 0;
} 
.font-box h1 span {
	padding-left: 30px;
}      

.circal-img {
	position: relative;
	background-image: url(../images/bg-flower.png);
	background-repeat: no-repeat;
	background-size: 650px;
	background-position: top center;
	padding-top:80px;
}
#cow-by-cow-section {
	padding-top: 80px;
}   
.font-box h4 span {
	display: block;
	margin:0;
}
.font-box h4 {
	letter-spacing: normal;
	color: #0EA42C;
	text-transform: uppercase;
	font-family: 'Poppins';
	font-weight: 300;
	font-size: 25px;
	line-height: 63px;
}
.font-box h2 {
	color: #1A1A1A;
	text-transform: uppercase;
	font-family: 'Big Shoulders Display', cursive;
	font-size: 58px;
	line-height: 79px;
	font-weight: 700;
}
.font-box h2 {
	position: relative;
	top: -20px;
}
.form-heading h2{
	top: -70px;
}
.text-part {
	margin: 30px 0;
}
#cow-by-cow-section .text-part {
	margin: 50px 0;
	margin-top: -70px;
}
.font-box p {
	color: #1A1A1A;
	font-size: 20px;
	line-height: 30px;
	font-weight: normal;
}
.font-box .green-font {
	color: #0EA42C;
	font-size: 25px;
	font-weight:bold;
	font-family: SegoeScript;
}
#cow-by-cow-section .green-font {
	margin: 26px 0;
}
#cow-by-cow-section::before, #cow-by-cow-section::after {
	content: "";
	position: absolute;
	width: 23%;
	height: 100%;
	top: 0;
	background-repeat: no-repeat;
	background-size: contain;
}
#cow-by-cow-section::before {
	left: 0;
	background-image: url(../images/tree.png);
	background-position: left 100%;
	width: 20%;
}
#cow-by-cow-section::after {
	right: 0;
	background-image: url(../images/tree2.png);
	background-position: bottom right;
}        

#PROTECT-section {
	position: relative;
	background-image: url(../images/my-cow-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding-bottom:120px;
}


.font-box .protect-box p {
	color: #fff;
}
.protect-box {
	background: #00000059;
	padding:70px;
	border-radius: 30px;
}
.font-box .protect-box p a {
	color: #E8DA12;
	font-weight: 600;
	text-decoration: underline;
}
#JOURNEY-section {
	position: relative;
	background-image: url(../images/journey-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding-bottom: 120px;
}
#adopt-cow2.font-box .topcontent h4 span {
	font-weight: bold;
}
#adopt-cow2 .topcontent {
	padding-bottom: 0;
}
.videogp video {
	width: 90%;
	height: 550px;
	margin: 20px 0;
}
.containerTop h1 {
	margin: 20px 0;
}
.JOURNEY-box .row {
	justify-content: center;
	align-items: center;
	position: relative;
}

.JOURNEY-box .row::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	width:90px;
	height:90px;
	top: 50%;
	transform: translateY(-50%);
	background-repeat: no-repeat;
	background-size:90px;
	background-position: center;
}
.white-colour-box {
	background: #fff;
	padding: 30px 20px;
	border-radius: 20px;
	text-align: center;
	border: 2px dashed #707070;
}
.text-box-left, .img-left {
	padding-right:90px;
}
.img-right, .text-box-right {
	padding-left:90px;
} 
.JOURNEY-box {
	position: relative;
}
.JOURNEY-box::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 1px;
	background: #0EA42C;
	height: calc(100% - 410px);
	top: 0;
}
.JOURNEY-box::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 26px;
	height: 26px;
	background: #0EA42C;
	border-radius: 100%;
}
.green-box {
	padding-right: 15px;
	margin-top: 200px;
}   
.green-box .white-colour-box {
    background: #0EA42C;
    color: #fff;
    border: none;
    width: 600px;
    display: block;
    margin: 0 auto;
}
.font-box .white-colour-box p a {
	color: #0066FF;
	text-decoration: underline;
}
.one-box-row::before{
	background-image: url(../images/journey-icon1.png);
} 
.two-box-row::before{
	background-image: url(../images/journey-icon2.png);
} 
.three-box-row::before{
	background-image: url(../images/journey-icon3.png);
}
.four-box-row::before{
	background-image: url(../images/journey-icon42.png);
}
.five-box-row::before{
	background-image: url(../images/journey-icon5.png);
}
.six-box-row::before{
	background-image: url(../images/journey-icon6.png);
}
.JOURNEY-box .seven-box-row::before {
	background-image: url(../images/journey-icon7.png);
	top:20%;
}
.font-box h3 {
	font-weight: 700;
	font-family: 'Poppins';
	color: #1A1A1A;
	line-height: 30px;
}
.journey-start-img {
	margin: 8px;
}
.font-box .white-colour-box h3 {
	color: #0EA42C;
	font-size: 30px;
	line-height: 30px;
	margin-bottom: 15px;
}
.font-box .white-colour-box p {
	font-size: 18px;
}
.font-box .green-box h3, .font-box .green-box p {
	color: #fff;
}
.personal-care-box {
	margin-top: 0px;
}
.text-care-box h3 {
	font-size: 24px;
	margin-bottom: 5px;
}
.text-care-box {
	margin-bottom: 50px;
}
.img-hover {
	display: none;
}
.video-btn-box {
	text-align: center;
	margin-top: 40px;
}
.video-btn-box a {
	display: inline-block;
	border: 1px solid #C1C1C1;
	border-radius: 50px;
	padding: 15px 36px;
	color: #1E1E1E;
	text-transform: uppercase;
	font-size: 20px;
	font-family: 'Big Shoulders Display', cursive;
	margin: 0 10px;
	font-weight: bold;
	position: relative;
}
.video-btn-box a img {
	padding-right: 10px;
	width: 30px;
}
.img-hover {
	display: none;
}
.video-btn-box a:hover {
	border-color:#0EA42C;
	color:#fff;
}
.video-btn-box a::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	height: 0;
	background: #0EA42C;
	transition: 0.5s ease-in-out;
	width: 0;
	z-index: -1;
	border-radius: 40px;
	bottom: 0;
}
.video-btn-box a:hover::before {
	height: 100%;
	width: 100%;
}
.video-btn-box a:hover .img-defult {
	display: none;
}
.video-btn-box a:hover .img-hover {
	display:inline-block;
}

#about-section {
	background: #F7F9FA;
}
.tab-content {
	overflow: hidden;
}
.tab-pane p {
	text-align: center;
}
.owl-stage {
	display: flex;
	flex-wrap: wrap;
}
.owl-stage .owl-item {
	background: #ffff;
	padding: 40px 30px;
	border-radius: 20px;
}
.owl-stage .owl-item .item {
	text-align: center;
}
.owl-stage .owl-item .item img {
	margin: 0 auto;
	width: auto;
}
.list-box {
	text-align: left;
	margin-top: 30px;
}
.list-box li {
	position: relative;
	display: block;
	color: #1A1A1A;
	line-height: 25px;
	font-size: 15px;
	margin-bottom: 20px;
	padding-left:40px;
}
.list-box li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 30px;
	height: 30px;
	background-repeat: no-repeat;
	background-size: auto;
	background-position: center;
	background-image: url(../images/check.png);
}

.link-box {
	text-align: left;
	margin-top: 40px;
}
.font-box .link-box p {
	font-size: 13px;
	position: relative;
	padding-left: 40px;
	text-align: left;
}
.font-box .link-box p::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 30px;
	height: 30px;
	background-repeat: no-repeat;
	background-size: auto;
	background-position: center;
	background-image: url(../images/link-icon.png);
}

#partners-slider .owl-stage .owl-item {
	background: none;
	padding: 40px 10px;
} 
.team-img img {
	width: auto;
	margin: 0 auto;
	display: block;
}
.team-text {
	text-align: center;
	margin: 30px 0;
}
.font-box .team-text h3 {
	font-size: 30px;
	color: #26AD41;
	font-weight: normal;
}  
#about-section .circal-img {
	padding-bottom: 70px;
}   
.about-box .nav-tabs {
	text-align: center;
	border: none;
	justify-content: center;
}   
  
.about-box .nav-tabs li {
	display: inline-block;
	background:rgb(255 255 255 / 64%);
	padding: 10px 50px;
	position: relative;
} 
.about-box .nav-tabs li:first-child {
	border-radius: 34px 0 0 34px;
}
.about-box .nav-tabs li:last-child {
	border-radius: 0 34px 34px 0;
} 
.about-box .nav-tabs li a {
	color: #1A1A1A;
	text-transform: uppercase;
	font-size: 25px;
	line-height: 30px;
	font-weight: bold;
	font-family: 'Big Shoulders Display', cursive;
}     
.form-heading h2 {
	margin: 90px 0 0;
}
#adota-cow {
	position: relative;
	top: -40px;
}
#organization, #our-partners{
	background-image: url(../images/org-img.png);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: bottom center;
	padding-bottom: 60px;
	margin-top: 0;
}

#our-videos{

	background-repeat: no-repeat;
	background-size: 100%;
	background-position: bottom center;
	padding-bottom: 60px;
	margin-top: 0;
}
#organization-slider {
	margin-top: 100px;
}
#donate-form .form-control.error, #adota-cow .form-control.error {
    border-color: #f00;
}
#donate-form label.error, #adota-cow label.error{
    display: none !important;
}
.about-box .nav-tabs li a{
	position:relative;
	display:block	
}
.about-box .nav-tabs li a::before {
	content: "";
	position: absolute;
	left: 0;
	width:100%;
	height: 2px;
	background:#0EA42C;
	right: 0;
	margin: 0 auto;
	bottom:-10px;
	display:none;
}
.team-part {
	margin: 40px 0;
}
.about-box .nav-tabs li a.active::before {
	display:block;
}
.about-box .nav-tabs li a.active{
	color:#0EA42C;  
}
#partners-slider {
	margin-top: 115px;
	padding-bottom: 120px;
} 
.owl-nav {
	text-align: center;
	position: relative;
	top: 60px;
} 
.menu-link.top-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.main-menu.right-mene {
	padding-left: 100px;
}
.main-menu.right-mene li {
	margin-right: 0;
}
.owl-nav button {
	border: 3px solid #fff !important;
	margin: 0 30px;
	width: 70px;
	height: 70px;
	border-radius: 100%;
	color: #fff !important;
	font-size: 55px !important;
	line-height: 70px !important;
	position:relative;
}
.owl-nav button span {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	line-height: normal !important;
	transform: translateY(-50%);
	margin: 0 auto;
} 
input#billing_country {
    text-transform: capitalize;
}
#our-team{
	background-image: url(../images/team-bg.png);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: bottom center;
	padding-bottom: 60px;
	margin-top: 30px;
}  
/* Hide the browser's default checkbox */
.form-check input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height:100%;
	width: 100%;
	margin: 0;
	top: -2px;
	left: 2px;
	z-index: 1;
}

/* Create a custom checkbox */
.form-check .checkmark2 {
	position: absolute;
	top: 0px;
	left: 0;
	height: 31px;
	width: 31px;
	background: #fff;
	border: 1px solid #707070;
	border-radius: 5px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.form-check .checkmark2:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.form-check input:checked ~ .checkmark2:after {
  display: block;
}      

/* Style the checkmark/indicator */
.form-check .checkmark2::after {
	left: 10px;
	top: 2px;
	width: 10px;
	height: 20px;
	border: solid #0ea42c;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
} 
#donate-form .col-form-label span {
	color: #CF491F;
}
.form-check label.error + .checkmark2 {
	border-color: #f00;
} 
.form-check .form-check-label {
	padding-left:30px;
}
footer {
	background: #000;
	padding: 20px 0;
}
footer p.copyright {
	color: #fff;
	margin-bottom: 0;
}
header.head_stiky {
	background: #fff;
	box-shadow: 0 0 4px #000;
}
.contactUs {
	background-image: url(../images/contact-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 30px 0 60px;
}
.contactUs .heading-part {
	margin: 80px 0 30px;
}    
.map iframe {
	width: 100%;
	height: 550px;
	border-radius: 40px;
}
.colAddress address h5 {
	color: #fff;
	font-size: 29px;
	line-height: 39px;
	font-family: 'Big Shoulders Display', cursive;
	font-weight: bold;
}   
.colAddress address p a {
	color: #fff;
}
.font-box .colAddress address p {
	font-size: 26px;
	color: #fff;
	line-height: 39px;
}
#Reg-btn {
	display: inline-block;
	text-align: center;
}
.socialIcons h6 {
	font-size: 40px;
	line-height: 48px;
	font-weight: bold;
	font-family: 'Big Shoulders Display', cursive;
	color: #fff;
}
.containerContact {
	max-width: 80%;
	margin: 0 auto;
}
.colAddress address {
	margin-bottom: 30px;
}
.socialIcons ul {
	margin-top: 20px;
	margin-bottom: 0;
}
.socialIcons ul li {
	display: inline-block;
	margin-left: 14px;
}
.socialIcons ul li:first-child {
	margin-left:0;
}
.socialIcons ul li a {
	font-size:30px;
	color: #fff;
}
.sub-btn:hover, #explo-btn:hover, #donate-btn:hover, .proceed-btn:hover {
	color: #fff;
	border-color:#0EA42C;
}
.owl-nav button:hover {
	border-color: #0EA42C !important;
	color: #0EA42C !important;
}
.white-img {
	display: none;
}
.black-img {
	display:inline-block;
}
.sub-btn:hover .black-img{
	display: none;
}
.sub-btn:hover .white-img{
	display: inline-block;
} 
.main-menu li a#donate-btn {
	margin-top: 0;
} 

.socialIcons ul li a:hover .fa-linkedin-square {
	color: #0073b0;
}
.socialIcons ul li a:hover .fa-youtube-play{
	color:#f00;
}
.socialIcons ul li a:hover .fa-twitter {
	color: rgb(29, 161, 242);
}
.socialIcons ul li a:hover .fa-facebook-square {
	color: #3b5998;
}


.col-form-label[for="pancard_error"], .col-form-label[for="pancardpayment_error"] {
	color: #f00;
	display: block;
	width: 100%;
	max-width: 100%;
	font-size: 14px;
	text-align:left;
}
.desktop-view {
	display: block;
}
.mobile-view {
	display:none;
}
.contactUs .heading-part h2 {
	color: #fff;
}
.scroll_box_main {
    display: block;
    margin-top: 15px;
    height: 5px;
    position: relative;
	top: -140px;
}
#Top-section-part {
	background: #fde794;
	top: -15px;
	height: 20px;
}
.bgLine {
    position: absolute;
    left: 0;
    right: 0;
    height: 491px;
    background-position: center;
}

.videogp, .bgLine {
    transform: scale(.8);
    transition: all 1s ease-in-out;
}

.animateBan .videogp,.animateBan .bgLine {
    transform: scale(1);
}
.textBanner {
    transform: translateY(58px);
    transition: all 1s ease-in-out;
}
.animateBan .textBanner {
    transform: translateY(-30px);
}

.circal-img{
	overflow: hidden;
}
.transLeft {
    transform: translateX(-97px);
    transition: all 1s cubic-bezier(0.07, 0.93, 0.46, 1.07);
    opacity: 0;
}

.transRight {
    transform: translateX(97px);
    transition: all 1s cubic-bezier(0.07, 0.93, 0.46, 1.07);
    opacity: 0;
}
.animated.transLeft, .animated.transRight {
    transform: translateX(0px);
      opacity: 1;
}
.proceed-btn {
	height: 70px;
	width: 300px;
	z-index: 1;
	background: #ce3f3f;
	color: #fff;
}  
.proceed-btn.sub-btn::after {
	background: #ce3f3f;
}
#back-to-top {
	position: fixed;
	bottom: 115px;
	right: 18px;
	z-index:111;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	background: #fff;
	color: #444;
	cursor: pointer;
	border: 0;
	border-radius: 100%;
	text-decoration: none;
	transition: opacity 0.2s ease-out;
	opacity: 0;
	font-size: 24px;
	box-shadow: 0 0 2px #1a1a1a;
}
#back-to-top:hover {
    background: #e9ebec;
}
#back-to-top.show {
    opacity: 1;
}
input::placeholder, textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color:light-gray;
  font-size: 15px;
  opacity: 1; /* Firefox */
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:light-gray;
	font-size: 15px;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder { /* Microsoft Edge */
  color:light-gray;
  font-size: 15px;
} 
.thanks-page {
	height: 100%;
}
.thanks-page header {
	top: 0;
}
#thanks-main {
	height: 100%;
	padding-top: 40vh;
}
.font-box h1.color-thanks {
	color: #000;
	margin-bottom: 50px;
}
html, .thanks-page {
	height: 100%;
}
.back-btn {
	color: #fff;
	background: #000;
	padding: 10px 40px;
	border-radius: 30px;
	font-size: 18px;
	margin-top: 18px;
	display: inline-block;
}
.back-btn:hover {
	color: #fff;
	background: #38b451;
}
.thanks-page header #Reg-btn {
	display: none;
}
/*---05--10--2020---*/
.font-box h4 img {
	display: none;
} 
.heading-top-box {
	position: relative;
	top: -40px;
} 
#adopt-cow .topcontent {
	padding-bottom: 0;
} 
#adopt-cow2 ul.list li {
	min-height: auto;
}
.menu-bar.mobile-navbar {
	display: none;
}
.form-check-main {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
/* #msg-box {
	height: 0;
	visibility: hidden;
	opacity: 0;
	margin-top: 0;
	margin-bottom:0;
	transition: 0.5s ease-in-out;
}
#msg-box.show-msg-box{
	
}
#msg-box.show-msg-box {
	height: auto;
	visibility: visible;
	opacity: 1;
	margin-top: 10px;
	margin-bottom: 10px;
} */ 
#msg-box {
	display: none;
} 
.page-404-main header {
	top: 0;
}
.page-404-main ~ footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	left: 0;
	margin-bottom: 0;
} 
#page-404 {
	margin-top: 100px;
}
#page-404 .thanks-page-text {
	text-align: center;
}
#page-404 .btnback {
	background: #000;
	color: #fff;
	border: none;
	width: 160px;
	height: 50px;
	border-radius: 30px;
	line-height: 50px;
	font-size: 18px;
	cursor: pointer;
}
#page-404 .btnback:hover {
	background: #0ea42c;
}
.page-404-main .menu-box {
	display: none;
}

@media (min-width:999px){
	#organization-slider .owl-stage {
		transform: translate3d !important;
	}
}
@media (max-width:1799px){
	.container{
		max-width:1500px;
	} 
	#cow-by-cow-section::before, #cow-by-cow-section::after {
		width:16%;
	}	
	.font-box p {
		font-size: 17px;
	}
	.font-box .green-font {
		font-size: 21px;
	}
	.video-btn-box a {
		padding: 15px 30px;
		font-size: 17px;
	}
	
	.about-box .nav-tabs li a {
		font-size: 21px;
	}
	#organization, #our-partners {
		background-size: 100% 94%;
	}
	ul.list {
		width: 70%;
	}
	#adota-cow {
		width: 1050px;
	}
	.col-form-label, label.container1 span {
		font-size: 17px;
	}
	#donate-form {
		width: 900px;
	}
	.citizen-box .checkmark, .radio-box1 .checkmark1 {
		font-size: 16px;
	}
	.form-check-label {
		font-size: 20px;
	}
	.form-control {
		font-size:17px;
	}	
	.containerTop {
		top: 54%;
	}
	.form-check .form-check-label {
		padding-left: 25px;
	}
	.form-heading h2 {
		margin-bottom:30px;
	}
	.videogp video {
		height: 450px;
		width: 86%;
	}
	input::placeholder, textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
		font-size: 13px;
	}

	input:-ms-input-placeholder, textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
		font-size: 13px;
	}

	input::-ms-input-placeholder, textarea::-ms-input-placeholder { /* Microsoft Edge */
	   font-size:13px;
	}
	.main-menu li {
		margin-right:30px;
	}
}

@media (max-width:1599px){
	.container{
		max-width:1350px;
	} 
	.videogp video {
		height: 400px;
		width: 82%;
	}	
	.font-box h1 {
		font-size: 100px;
	}
	#explo-btn {
		font-size: 25px;
	}
	.font-box p {
		font-size: 15px;
	}
	.font-box .green-font {
		font-size:18px;
	}
	.font-box .white-colour-box h3 {
		font-size: 24px;
	}
	.font-box .white-colour-box p {
		font-size: 15px;
	}	
	.JOURNEY-box .row {
		margin-bottom: 30px;
	}
	.video-btn-box a {
		padding: 15px 20px;
		font-size: 15px;
	}
	ul.list li {
		font-size: 14px;
	}
	.col-form-label, label.container1 span {
		font-size: 15px;
	}
	#adota-cow {
		width: 950px;
	}
	.form-control {
		font-size: 15px;
	}
	.proceed-btn {
		width: 290px;
	}
	#donate-form {
		width: 730px;
	}
	.form-check-label {
		font-size: 15px;
	}
	.citizen-box .checkmark, .radio-box1 .checkmark1 {
		font-size: 12px;
	}
	.font-box h2 {
		font-size: 45px;
		line-height:65px;
	}
	.team-img img {
		width: 70%;
	}
	.font-box .team-text h3 {
		font-size: 25px;
	}
	.font-box .colAddress address p {
		font-size: 20px;
	}
	input::placeholder, textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
		font-size: 12px;
	}

	input:-ms-input-placeholder, textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
		font-size: 12px;
	}

	input::-ms-input-placeholder, textarea::-ms-input-placeholder { /* Microsoft Edge */
	   font-size:12px;
	}
	.main-menu li {
		margin-right: 20px;
	}
	.main-menu.right-mene {
		padding-left: 45px;
	}
	.main-menu.left-mene li {
		margin-right: 20px;
	}
	.main-menu li a {
		font-size: 18px;
	}
	header.head_stiky .main-menu li a {
		font-size: 16px;
	}
}

@media (max-width:1399px){
	.container{
		max-width:1140px;
	}  
	.videogp video {
		height: 280px;
		width: 71%;
	}   
	.containerTop h1 {
		margin: 10px 0;
	}
	.containerTop {
		top:58%;
	}
	.font-box p {
		font-size: 13px;
	}
	.font-box .green-font {
		font-size: 16px;
	}
	
	.font-box h2 {
		font-size:40px;
		line-height: 60px;
	}
	.video-btn-box a {
		padding: 15px 17px;
		font-size: 13px;
	} 
	.owl-stage .owl-item {
		padding: 40px 10px;
	}	
	.list-box li, .font-box .link-box p {
		font-size: 12px;
	}
	ul.list {
		width: 90%;
	}
	ul.list li {
		font-size: 13px;
	}
	.main-menu li a {
		font-size: 14px;
		line-height: 26px;
		margin-bottom: 12px;
	}
	header.head_stiky .main-menu li a {
		font-size: 13px;
	}
	.logo-menu-inner li a img {
		width: 70px;
	}
	.main-menu li {
		margin-right: 13px;
	}
	.main-menu.right-mene {
		padding-left: 16px;
	}
}   

@media (max-width:1199px){
	.container{
		max-width:970px;
	} 
	.font-box p {
		font-size: 12px;
	}
	#cow-by-cow-section::before, #cow-by-cow-section::after {
		width: 17%;
	}	
	.protect-box {
		padding: 50px;
	}
	.text-box-left, .img-left {
		padding-right: 60px;
	}
	.font-box .white-colour-box p {
		font-size: 12px;
		line-height: normal;
	}
	.img-right, .text-box-right {
		padding-left: 60px;
	}
	.green-box .white-colour-box {
		width: 430px;
	}
	.video-btn-box a {
		padding: 15px 20px;
		font-size: 13px;
		margin: 10px 0;
	}
	.font-box .green-box-part .green-font {
		font-size: 18px;
	}
	.font-box .colAddress address p {
		font-size: 16px;
	}
	header {
		background-color: transparent;
	}
	.menu-box {
		position: fixed;
		left: 0;
		width: 100%;
		bottom: 0;
		background: #dbf7e0;
		box-shadow: 0 2px 20px #000;
		z-index: 1111;
	}
	.containerTop {
		top: 43%;
	}
	header.head_stiky {
		position: static;
	}
	.menu-bar.desktop-navbar {
		display: none;
	}
	.main-menu li a.link-btn {
		margin: 0;
	}
	.mobile-navbar .menu-link {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 0;
		align-items: center;
	}
	.menu-bar.mobile-navbar {
		padding: 10px 0;
	}
	.mobile-navbar .menu-bar.open-menu .menu-link {
		text-align: left;
		justify-content: flex-start;
		padding: 0 26px;
	}
	#menu-hide {
		display: block;
		position: absolute;
		top: 20px;
		right: 30px;
	}
	.box-btn p {
		margin: 0;
		font-family: 'Big Shoulders Display', cursive;
		font-size: 26px;
		display: flex;
		align-items: center;
	}
	.box-btn {
		width: auto;
		text-align: right;
		padding-left: 30px;
		position: relative;
		z-index: 999;
	}
	#menu-show {
		margin-left: 20px;
	}
	.logo-menu-inner {
		display: block;
	}
	.menu-bar.mobile-navbar.open-menu {
		display: block;
	}
	.mobile-navbar .menu-bar {
		position: fixed;
		bottom: 0;
		background: #ffffffed;
		transition: 0.5s ease-in-out;
		height:100%;
		left: 0;
		width:100%;
		display: none;
	}
	.mobile-navbar .menu-bar.open-menu {
		display: block;
	}
	.logo-menu {
		position: static;
		padding:15px;
	}
	.mobile-navbar .menu-bar.open-menu .main-menu li {
		display: block;
		margin-right: 0;
	}
	footer {
		margin-bottom: 70px;
	}
	.menu-bar.mobile-navbar {
		display: block;
	}
	.mobile-liks-box .main-menu {
		display: flex;
		align-items: center;
	}
	.menu-link.mobile-liks-box .img-con {
		margin: 0;
		padding: 0;
	}
	.menu-link.mobile-liks-box .img-con::before {
		display:none;
	}
}

@media (max-width:1023px){
	.font-box p {
		font-size: 11px;
	}
}
     
@media (max-width:991px){
	.container {
		max-width: 750px;
	}
	#adota-cow {
		width: 100%;
		padding: 30px 40px;
	}
	#donate-form {
		width: 100%;
		padding: 0 15px;
	}
	.videogp video {
		height: auto;
		width: 100%;
	}
	.protect-box .protect-box-text, .personal-care-box .personal-care-box-text {
		order: 2;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.protect-box .protect-box-img, .personal-care-box .personal-care-box-img {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		text-align: center;
	}
	.video-btn-box a {
		margin: 10px 20px 40px;
	}	
	.text-care-box {
		margin-bottom: 0;
	}
	.protect-box-text p br, .text-care-box p br {
		display: none;
	}
	.font-box h4 {
		font-size: 25px;
	}
	.JOURNEY-box .row::before {
		width: 50px;
		height: 50px;
		background-size: 50px;
	}
	.text-box-left, .img-left {
		padding-right: 30px;
	}
	.img-right, .text-box-right {
		padding-left: 30px;
	}
	.font-box .white-colour-box p {
		font-size: 12px;
	}
	.font-box .white-colour-box h3 {
		font-size: 15px;
	}
	.green-box .white-colour-box {
		width: 340px;
	}
	.JOURNEY-box::before {
		height: calc(100% - 360px);
	}
	.font-box h2 {
		font-size: 30px;
		line-height: 70px;
	}
	.protect-box-img {
		margin-bottom: 30px;
	}
	#PROTECT-section {
		padding-bottom: 50px;
	}
	.font-box .green-font {
		font-size: 13px;
	}
	.protect-box {
		max-width: 84%;
		margin: 0 auto;
	}
	.box h6 {
		font-size: 18px;
	}
	ul.list {
		width: 100%;
	}
	ul.list li {
		font-size: 11px;
		padding-left: 14px;
	}
	ul.list li::before {
		left: -10px;
	}
	.font-box .green-box-part .green-font {
		font-size: 15px;
	}
	.col-form-label, label.container1 span {
		font-size: 13px;
	}
	.donate-text-top p br {
		display: none;
	}
	.text-care-box h3 {
		font-size: 18px;
	}
	.about-box .nav-tabs li a {
		font-size: 18px;
	}
	.font-box .team-text h3 {
		font-size: 16px;
	}
	.team-part .team-img {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.team-part .row {
		justify-content: center;
	}
	
	.videogp {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.666667%;
		flex: 0 0 80%;
		max-width: 80%;
	}
	
	.font-box .colAddress address p {
		font-size: 12px;
	}
	.containerTop {
		top: 50%;
	}
	.protect-box-img img {
		width: 50%;
	}
	#organization, #our-partners {
		background-size: auto;
	}
	#cow-by-cow-section::before {
		background-position: left 1%;
		width: 25%;
		transform: rotate(12deg);
		left: -120px;
	}
	.containerContact {
		max-width: 100%;
	}
}
     
@media (max-width:767px){
	.container, .container-header {
		max-width: 100%;
	}   
	#adopt-cow .row {
		justify-content: center;
	}
	ul.list {
		width:96%;
	}
	#adopt-cow .box {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	#adopt-cow .box h6 {
		text-align: left !important;
		margin: 0 auto 15px;
		width: 80%;
	}
	#adota-cow {
		padding: 30px 15px;
		border-radius: 20px;
	}
	.col-form-label, label.container1 span {
		font-size: 11px;
	}
	.money-box .col-sm-3 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
		-webkit-box-flex: 0;
	}
	#donate-form .group-row {
		align-items: flex-start;
	}
	.font-box p br {
		display: none;
	}
	#cow-by-cow-section::before, #cow-by-cow-section::after {
		width: 9%;
	}
	.white-colour-box {
		padding: 30px 10px;
	}
	.font-box .white-colour-box h3 {
		font-size: 12px;
	}
	.container-header {
		padding: 0 15px;
	}
	.logo {
		padding-left: 15px;
	}
	.menu-box {
		padding-right: 15px;
	}	
	.money-box .col-sm-3 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		-webkit-box-flex: 0;
		margin-bottom: 20px;
	}
	.col-6.map-box {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.col-6.pl-5.address-box-text {
		padding-left: 15px !important;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		margin-top: 40px;
	}
	.map iframe {
		width: 100%;
		height: 350px;
		border-radius: 40px;
	}
	.contactUs {
		padding: 30px 0 50px;
	}
	.socialIcons h6 {
		font-size: 30px;
	}
	.colAddress address h5 {
		font-size: 25px;
	}
	.contactUs .heading-part h2 {
		font-size: 50px;
		text-align: center;
	}
	#cow-by-cow-section::before {
		width: 20%;
	}
	#cow-by-cow-section .text-part {
		margin-top: 0;
	}
	.personal-care-box {
		margin-top: 20px;
	}
	#about-section .circal-img {
		padding-bottom: 0;
	}
	.container1 {
		position: relative;
	}
	.container1 span {
		padding-left: 25px;
		display: block;
	}
	.container1 input {
		margin-right: 11px;
		display: inline-block;
		position: absolute;
		left: 0;
		top: 5px;
	}
	.font-box .colAddress address p {
		font-size: 16px;
	}
	.animateBan .textBanner {
		transform: translateY(0px);
	}	
}

@media (max-width:599px){
	.JOURNEY-box::before {
		left: 50px;
		margin: 0;
		height: calc(100% - 230px);
	}
	.JOURNEY-box::after {
		left: 38px;
		margin: 0;
	}
	.JOURNEY-box .row::before {
		margin: 0;
		left: 25px;
	}
	.text-box-left, .img-left {
		padding-right: 15px;
		padding-left: 100px;
	}
	.protect-box-img img {
		width:100%;
	}
	.img-right, .text-box-right {
		padding-left: 100px;
	}
	.text-box-left {
		order: 2;
		margin: 30px 0;
	}
	.img-left {
		margin: 30px 0;
	}
	.video-btn-box a {
		margin: 10px 8px 40px;
	}
	.font-box h2 {
		font-size: 22px;
		line-height:60px;
	}
	.font-box h4 {
		font-size: 20px;
	}
	.about-box .nav-tabs li {
		padding: 10px 30px;
	}
	.team-part .team-img {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.font-box p {
		font-size: 13px;
	}
	#adopt-cow .box {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width:70%;
	}
	ul.list li {
		font-size: 12px;
	}
	.desktop-view {
		display: none;
	}
	.mobile-view {
		display: block;
	}
	.col-form-label, label.container1 span {
		font-size: 12px;
		line-height: normal;
		margin-bottom: 20px;
	}
	.col-form-label br {
		display: none;
	}
	.money-box .col-sm-3.align {
		margin-top: 0;
	}
	.videogp video {
		height: auto;
		width: 100%;
		margin-bottom: 10px;
	}   
	.videogp {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0 30px;
	}
	.protect-box {
		padding: 30px;
	}
	.containerContact {
		max-width: 100%;
	}
	#organization-slider .owl-stage {
		display: block;
	}
	#partners-slider .owl-stage .owl-item .item img {
		width: 80%;
	}
	.font-box h2 {
		top: -14px;
	}
	.topcontent {
		padding-bottom: 30px;
	}
	#adopt-cow .box h6 {
		text-align: center !important;
	}
	.form-heading h2 {
		margin-top: 0;
	}
	big img {
		width: 20px;
		margin-top: 12px;
	}
	#adota-cow .form-group.last-group {
		margin: 0;
	}
	#adopt-cow {
		padding-bottom: 30px;
	}
	.form-check .checkmark2 {
		height: 25px;
		width: 25px;
		top: 10px;
	}
	#donate-btn {
		margin-top: 15px;
	}
	.contactUs .heading-part {
		margin: 15px 0 30px;
	}
	.owl-nav button span {
		top: 47%;
	}
	#back-to-top {
		bottom: 20px;
		right: 10px;
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 20px;
	}
	.main-menu li a.link-btn {
		width: 100px;
		height: 45px;
		line-height: 45px;
		font-size: 20px;
	}
	.img-con img {
		width: 30px;
	}
	#donate-btn {
		width: 90px;
	}
	.main-menu li a {
		font-size: 20px;
	}
	header.head_stiky .main-menu li a {
		font-size: 18px;
	}
	.form-check .checkmark2::after {
		left: 7px;
	}
	.font-box h1 {
		font-size: 60px;
		line-height: 40px;
	}
}

@media (max-width:480px){
	header .logo img {
		width: 80px;
	}
	header.head_stiky .logo img {
		width: 70px;
	}
	.menu-box-btn .box-btn:first-child {
		width: 120px;
	}
	#Reg-btn {
		width: 124px;
		font-size: 12px;
		height: 40px;
		line-height: 40px;
	}
	.sub-btn {
		line-height: 50px;
		height: 50px;
	}
	#menu-show {
		width: 40px;
		height: 40px;
	}
	#menu-show:hover {
		width: 50px;
		height: 50px;
	}
	
	.green-box .white-colour-box {
		width: 100%;
	}
	.proceed-btn {
		width: 100%;
		font-size: 14px;
	}
	.font-box h1 {
		font-size: 35px;
		line-height: 40px;
	}
	.font-box h1 span {
		padding-left: 0;
		display: block;
	}
	.JOURNEY-box .row::before {
		top: 30%;
		left: 5px;
	}
	.JOURNEY-box::before {
		left: 30px;
	}
	.JOURNEY-box::after {
		left: 18px;
	}
	.img-right, .text-box-right, .text-box-left, .img-left {
		padding-left: 70px;
	}
	.circal-img {
		background-size: 100%;
	}
	#cow-by-cow-section::before {
		background-position: left 3%;
		width: 20%;
		transform: rotate(-2deg);
		left: 0;
	}
	#cow-by-cow-section .text-part {
		text-align: left !important;
		padding-bottom: 100px;
	}
	#cow-by-cow-section::after {
		width: 50%;
		background-position: right 100%;
	}
	.font-box h2 {
		font-size: 24px;
		line-height: normal;
	}
	.about-box .nav-tabs li {
		padding: 10px 25px;
	}
	.about-box .nav-tabs li a {
		font-size: 14px;
	}
	#adopt-cow .box {
		max-width: 80%;
	}
	ul.list {
		width: 100%;
	}
	
	.video-btn-box a {
		margin: 0px 8px 30px;
	}
	.text-care-box h3 {
		font-size: 16px;
	}
	#JOURNEY-section {
		padding-bottom: 10px;
	}
	.videogp {
		padding: 0 15px;
		margin-top:100px;
	
	}
	.animateBan .videogp {
		margin-top: 30px;
	}
	header {
		top:0;
	}
	.videogp, .bgLine	{
		transform: scale(1);
	}
	.protect-box {
		max-width: 96%;
	}
	.protect-box {
		padding: 15px;
	}
	.main-menu li a.link-btn {
		height:35px;
		line-height: 35px;
		font-size: 16px;
		width:80px;
	}
	.main-menu li a#cont-btn {
		width:80px;
	}
	.box-btn p {
		font-size: 20px;
	}
	.box-btn {
		padding-left: 0;
	}
	.main-menu li {
		margin-right: 6px;
	}
	.main-menu li a#adopt-btn {
		width: 100px;
	}
	#adopt-cow2 .row {
		justify-content: center;
	}
	#adopt-cow2 .box {
		-ms-flex: 0 0 90%;
		flex: 0 0 90%;
		max-width: 90%;
	}
}
   
@media (max-width:374px){
	.about-box .nav-tabs li {
		padding: 10px 16px;
	}
	#adopt-cow .box {
		max-width: 90%;
	}   
}   
   
.paymentnew-page header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 111;
    padding: 10px 0;
    transition: all 1s ease-in-out;
}
.paymentnew-page form#contactus {
    margin-top: 130px;
}

.paymentnew-page form#contactus {
  margin-top: 160px;
    text-align: center;
   padding: 80px 0 150px;
}
.paymentnew-page a#Reg-btn {
    display: none;
}
button.payment-btn.payraz-btn.back-btn {
    border: none;
}
body.paymentnew-page footer {
    position: fixed;
    left: 0;
    width: 100%;
    bottom: 0;
	margin-bottom: 0;
}
.paymentnew-page .menu-box {
	display: none;
}
body.paymentnew-page .payment-btn.payraz-btn.back-btn {
    margin-top:0;
    cursor: pointer;
}
select#select:focus {
    outline: none;
}


/*---15--10--2020--*/
header .logo {
	width: 100%;
	max-width: 12%;
}
header .menu-box {
	width: 100%;
	max-width: 77%;
	padding-right: 30px;
}
header .logo-right-2 {
	width: 100%;
	max-width: 10%;
	text-align: right;
}
header .logo-right-2 img {
	width: 160px;
	transition: 0.5s ease-in-out;
}
header.head_stiky .logo-right-2 img {
	width: 100px;
}
header .menu-box .menu-bar.desktop-navbar .menu-link.top-menu {
	justify-content: flex-end;
}
.main-menu.right-mene li {
	margin-right: 0;
	background:#ce3f3f;
	padding: 10px;
	border-radius: 10px;
}
header .main-menu.right-mene li a {
	width: auto !important;
	color: #fff !important;
	margin: 0;
	border-radius: 0;
	font-size: 19px;
	background: none;
	padding: 0;
	line-height: normal;
	height: auto;
	border: none;
}
header .main-menu.right-mene li a#adopt-btn {
	border-right: 1px solid #fff;
	padding-right: 7px;
}
.menu-link.top-menu .main-menu.left-mene li a {
	margin-bottom: 0;
	padding-bottom: 0;
}
header.head_stiky .main-menu.right-mene li a {
	width: auto !important;
	color: #fff !important;
	margin: 0;
	border-radius: 0;
	font-size:16px;
	background: none;
	padding: 0;
	line-height: normal;
	height: auto;
}
header .main-menu.right-mene li a::after {
	display: none;
}
header .main-menu.right-mene li a#donate-btn {
	padding-left:5px;
}
#cow-by-cow-section.font-box .green-font {
	font-family: 'Poppins', sans-serif;
}
.select-box-sub:focus {
	outline: 0 !important;
	box-shadow: none !important;
}
#about-section .about-box {
	margin-top: -100px;
}
.scheme-box .list {
	width: 100%;
}
.scheme-box .list li::before {
	background-image: none;
	background-color: #000;
	height:4px;
	width:4px;
	border-radius: 100%;
	top: 10px;
	display:none;
}
.scheme-box .list li {
	padding-left: 10px;
	font-size:12px;
} 
.font-box .green-box-part .green-font {
	font-weight: bold;
} 
#adota-cow .checkmark1 {
	font-size: 16px;
} 
#adopt-cow.schemes-adoption {
	position: relative;
	background-image: url(../images/my-cow-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding-bottom: 120px;
	padding-top: 50px;
}
/* #adopt-cow.schemes-adoption h2, #adopt-cow.schemes-adoption.font-box p, .schemes-adoption .box h6, .schemes-adoption ul.list li {
	color: #fff;
	text-shadow: 0 0 4px #000;
} */
.schemes-adoption::before {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background: #00000021;
	top: 0;
}
.bg-imagenew#adopt-cow {
    background-position: center top;
}
.bgwhitenew#adopt-cow {
    background-image: none;
    background-color: #fff;
}
.bgwhitenew#adopt-cow:before {
    background: #fff;
}
#adopt-cow::after {
    background-image: none !important;
}
section#adopt-cow {
    background-image: url(../images/bg-flower.png);
    background-size: auto;
    background-position: top;
}
#adopt-cow .circal-img {
   background-image: none;
}
@media (max-width:1799px){
	header.head_stiky .main-menu li a {
		font-size: 20px;
	}
	#adota-cow .checkmark1 {
		font-size: 14px;
}
}
@media (max-width:1599px){
	.main-menu li a {
		font-size: 20px;
	}
	header.head_stiky .main-menu li a {
		font-size: 18px;
	}
}

@media (max-width:1399px){
	.main-menu li a {
		font-size: 20px;
	}
	header.head_stiky .main-menu li a {
		font-size: 18px;
	}
	.main-menu.left-mene li {
		margin-right: 19px;
	}
}
@media (max-width:1199px){
	header .menu-box {
		max-width: 100%;
		padding-right:15;
	}
	.mobile-navbar .mobile-liks-box .main-menu > li{
		margin-right: 0;
		background:#ce3f3f;
		padding: 10px;
		border-radius: 10px;
	}
	.mobile-navbar .mobile-liks-box .main-menu > li a{
		width: auto !important;
		color: #fff !important;
		margin: 0;
		border-radius: 0;
		font-size: 19px;
		background: none;
		padding: 0;
		line-height: normal;
		height: auto;
		border: none;
	}
	.mobile-navbar .mobile-liks-box .main-menu > li a#adopt-btn {
		border-right: 1px solid #fff;
		padding-right: 6px;
	}
	.mobile-navbar .mobile-liks-box .main-menu > li a::after {
		display: none;
	}
	header.head_stiky .main-menu li a.link-btn {
		height: auto;
		line-height: normal;
	}
	.mobile-navbar .mobile-liks-box .main-menu > li a#donate-btn {
		padding-left:6px;
	}
	header .logo-right-2 {
		max-width: 16%;
	}
	header .logo {
		max-width: 20%;
	}
	.logo-menu-inner li a img {
		width: 100px;
	}
}
@media (max-width:767px){
	#cow-by-cow-section .text-part {
		margin-top: -70px;
	}
	#about-section .about-box {
		margin-top: -30px;
	}
	.containerTop {
		top: 60%;
	}
	#DONATE-part #donate-btn {
		width: 150px;
	}
}
@media (max-width:599px){
	header .logo-right-2 {
		max-width: 22%;
	}
	header .logo {
		max-width: 25%;
	}
	.textBanner {
		transform: translateY(-50%);
		transition: all 1s ease-in-out;
		top: 50%;
	}
	.font-box h1 br {
		display: none;
	}
	.font-box h1 span {
		margin-top: 16px;
	} 
	#DONATE-part #donate-btn {
		width: 150px;
	}	
}

@media (max-width:480px){
	header .logo-right-2 {
		max-width: 25%;
	}
	header .logo {
		max-width: 40%;
	}
}
