/*!
Theme Name: Bowlers Champion
Theme URI: https://arshitdhameliya.com/
Author: Arshit Dhameliya
Author URI: https://arshitdhameliya.com/
Text Domain: bowlers-champion
*/


html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
}

main {
	display: block;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

img {
	border-style: none;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Container */
.container {
	width: 100%;
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
}
@media only screen and (max-width: 1340px) {
	.container {
		max-width: calc(100% - 100px);
	}	
}

b, strong {
    font-weight: 700;
}

/* Alignment  */

.d-flex {
	display: flex;
	flex-wrap: wrap;
}
.align-center {
	align-items: center;
}
.align-end {
	align-items: flex-end;
}
.justify-center {
	justify-content: center;
}
.justify-space-between {
	justify-content: space-between;
}
.justify-end {
	justify-content: flex-end;
}

/* Typography  */
@font-face {
    font-family: 'Jumbodron';
    src: url('../../assets/fonts/Jumbodron-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
body,
button,
input,
select,
optgroup,
textarea {
	font-family: "Roboto", sans-serif;
	font-style: normal;
	color: #1F1F1F;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
a {
	clear: both;
}

h1 {
    font-family: 'Jumbodron';
	font-weight: 400;
	font-size: 40px;
	line-height: 50px;
	margin: 0;
}

h2 {
	font-family: 'Jumbodron';
    font-size: 42px;
    line-height: 52px;
	font-weight: 400;
	margin: 0;
}

h3 {
	font-weight: 400;
	font-size: 36px;
	line-height: 46px;
	margin: 0;
}

h4 {
	font-weight: 400;
	font-size: 24px;
	line-height: 34px;
	margin: 0;
}

h5 {
	font-weight: 400;
	font-size: 20px;
	line-height: 30px;
	margin: 0;
}

h6 {
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
	margin: 0;
}
a {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	text-decoration: none;
	color: #1F1F1F;
	transition: all linear .3s;
}
a:hover,
a:focus {
	color: #FFC403;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header {
    background: #2A6599;
	padding: 30px 0 20px 0;
}
header .site-logo {
    display: inline-block;
    line-height: 0;
    width: 100%;
    max-width: 250px;
}
header .site-logo img {
    width: 100%;
}

/*--------------------------------------------------------------
# Home Pge
--------------------------------------------------------------*/
.hero_section {
    background-color: #F68C1F;
    background-image: url('../../assets/images/hero_champion_img.png');
    background-position: 100% 100%;
    background-size: auto 100%;
    background-repeat: no-repeat;
    min-height: 75vh;
    display: flex;
    align-items: center;
}
.hero_section h1 {
    color: #032341;
    font-size: 100px;
    line-height: 110px;
    width: 100%;
    max-width: 780px;
    margin: 0 0 30px;
}
.hero_section p {
    color: #032341;
    font-size: 40px;
    line-height: 55px;
    width: 100%;
    max-width: 600px;
    margin: 0;
}
.cta_section {
    padding: 100px 0;
}
.cta_section .container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}
.cta_section .cta_box {
    width: calc(50% - 30px);
    background: #F68C1F;
    border-radius: 26px;
    display: flex;
    align-items: flex-end;
}
.cta_section .cta_box .cta_box_txt {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 40px;
}
.cta_section .cta_box .cta_box_txt h2 {
	color: #fff;
}
.cta_section .cta_box .cta_box_txt p {
    color: #fff;
    font-size: 28px;
    line-height: 36px;
    font-weight: 500;
    margin: 10px 0 20px;
}
.cta_section .cta_box .cta_box_txt a {
    width: fit-content;
    background: #fff;
    color: #032341;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
	transition: all linear .3s;
}
.cta_section .cta_box .cta_box_txt a:hover {
    background: #032341;
    color: #fff;
}
.cta_section .cta_box .cta_box_img {
    width: 50%;
    line-height: 0;
}
.cta_section .cta_box .cta_box_img img {
    margin-top: -50px;
    margin-bottom: -1px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
    background: #2A6599;
    padding: 60px 0 20px;
}
footer .footer_top {
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid #fff;
    padding-bottom: 20px;
}
footer .footer_logo .site-logo {
    display: inline-block;
    line-height: 0;
    width: 100%;
    max-width: 300px;
}
footer .footer_logo {
    line-height: 0;
}
footer .footer_logo .site-logo img {
    width: 100%;
}
footer .footer_top {
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid #fff;
    padding-bottom: 20px;
}
footer .footer_top .footer_links {
    display: flex;
    gap: 40px;
}
footer .footer_top .footer_links .footer_link {
	color: #fff;
	font-size: 18px;
	line-height: 22px;
	gap: 10px;
	transition: all linear .3s;
}
footer .footer_top .footer_links .footer_link:hover {
	color: #F68C1F;
}
footer .footer_bottom {
    padding-top: 20px;
}
footer .footer_bottom p {
    color: #fff;
    margin: 0;
    text-align: right;
}
footer .footer_bottom .site-info {
	width: 66.66%;
}
footer .footer_bottom .footer-social {
    width: 33.33%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}
footer .footer_bottom .footer-social a {
    display: inline-block;
    color: #fff;
    line-height: 0;
}
footer .footer_bottom .footer-social a:hover {
    color: #F68C1F;
}

/*--------------------------------------------------------------
# Adult Dog Page
--------------------------------------------------------------*/
.adult_dog_hero_sec {
    background: #FFF0DE;
    padding: 100px 0;
}
.adult_dog_hero_sec .container {
	gap: 60px;
}
.adult_dog_hero_sec .adult_dog_img {
    width: calc(40% - 30px);
	line-height: 0;
}
.adult_dog_hero_sec .adult_dog_txt {
    width: calc(60% - 30px);
}
.adult_dog_hero_sec .adult_dog_txt h1 {
    color: #032341;
    font-family: 'Roboto';
    font-size: 46px;
    line-height: 56px;
    font-weight: 700;
    margin-bottom: 30px;
}
.adult_dog_hero_sec .adult_dog_txt p {
    color: #032341;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin: 0 0 15px;
}
.adult_dog_hero_sec .adult_dog_txt ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}
.adult_dog_hero_sec .adult_dog_txt ul li {
    color: #032341;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}
.adult_dog_hero_sec .adult_dog_txt a {
    display: inline-block;
    line-height: 0;
}
.adult_dog_hero_sec .adult_dog_txt a img {
    max-width: 100px;
}
.adult_dog_hero_sec .adult_dog_txt .rating_img {
    line-height: 0;
}
.adult_dog_hero_sec .adult_dog_txt .rating_img p {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    margin: 16px 0 0;
}
.adult_dog_hero_sec .adult_dog_txt .rating_img img {
    max-width: 120px;
}
.adult_dog_img_sec {
    position: relative;
    padding-top: 60px;
    padding-bottom: 200px;
    background: #F68C1F;
}
.adult_dog_img_sec .container {
    line-height: 0;
}
.adult_dog_img_sec img {
    position: relative;
    z-index: 1;
}
.adult_dog_from_sec {
    background: #FFF0DE;
	padding-bottom: 100px;
}
.adult_dog_from_sec .adult_dog_from_wrap {
    position: relative;
    border-radius: 80px;
    background: #FFF0DE;
    box-shadow: 0 0 40px rgb(0 0 0 / 40%);
    padding: 100px;
    margin-top: -250px;
    z-index: 0;
}
.adult_dog_from_sec .adult_dog_from_header {
    margin-bottom: 40px;
}
.adult_dog_from_sec .adult_dog_from_header h2 {
    text-align: center;
    color: #032341;
    font-size: 60px;
    line-height: 70px;
}
.adult_dog_from_sec .adult_dog_from_header p {
    text-align: center;
    color: #032341;
    font-size: 30px;
    line-height: 40px;
    width: 100%;
    max-width: 780px;
    margin: 20px auto 0;
}
.adult_dog_from_sec .adult_dog_from .signup-form .form-group {
    margin-bottom: 20px;
}
.adult_dog_from_sec .adult_dog_from .signup-form input {
    color: #032341;
    width: 100%;
    border: 1px solid rgb(3 35 65 / 50%);
    outline: none;
    box-shadow: none;
    font-size: 18px;
    line-height: 28px;
    padding: 15px 20px;
    border-radius: 10px;
}
.adult_dog_from_sec .adult_dog_from .signup-form input::placeholder {
    color: #032341;
	opacity: 0.5;
}
.adult_dog_from_sec .signup-form .phone-otp-group {
    position: relative;
}
.adult_dog_from_sec .signup-form .phone-otp-group button {
    position: absolute;
    top: 0;
    right: 0;
    color: #032341;
    font-size: 20px;
    line-height: 30px;
    background: rgb(246 140 31 / 30%);
    border: none;
    outline: none;
    box-shadow: none;
    padding: 15px 30px;
    border-radius: 0 10px 10px 0;
	transition: all linear .3s;
    cursor: pointer;
}
.adult_dog_from_sec .signup-form .phone-otp-group button:hover {
    background: rgb(246 140 31 / 100%);
}
.adult_dog_from_sec .adult_dog_from .signup-form .form-submit {
	margin-top: 40px;
	margin-bottom: 0;
	text-align: center;
}
.adult_dog_from_sec .adult_dog_from .signup-form .form-submit button {
    color: #FFF;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    background: #F68C1F;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 15px 50px;
    border-radius: 50px;
    transition: all linear .3s;
    cursor: pointer;
}
.adult_dog_from_sec .adult_dog_from .signup-form .form-submit button:hover {
    background: #032341;
}

/*--------------------------------------------------------------
# Thank You
--------------------------------------------------------------*/
.thankyou_sec {
    background: #F68C1F;
    min-height: calc(100vh - 364px);
    display: flex;
    justify-content: center;
    align-items: center;
	text-align: center;
}
.thankyou_sec h1 {
    text-align: center;
    color: #032341;
    font-size: 60px;
    line-height: 70px;
    margin: 0 0 10px;
    text-transform: uppercase;
}
.thankyou_sec p {
    width: 100%;
    max-width: 600px;
    text-align: center;
    color: #032341;
    font-size: 24px;
    line-height: 34px;
    margin: 0 auto;
}
.thankyou_sec a {
    display: inline-block;
    margin-top: 30px;
    background: #fff;
    color: #032341;
    font-size: 20px;
    line-height: 30px;
	font-weight: 500;
    padding: 10px 30px;
    border-radius: 50px;
}
.thankyou_sec a:hover {
    background: #032341;
    color: #fff;
}

/*--------------------------------------------------------------
# Media Quries
--------------------------------------------------------------*/
@media only screen and (max-width: 990px) {
	.container {
        max-width: calc(100% - 40px);
    }
	.hero_section {
		background-size: 400px;
		min-height: 50vh;
	}
	.hero_section h1 {
		font-size: 46px;
		line-height: 56px;
		max-width: 50%;
		margin-bottom: 20px;
	}
	.hero_section p {
		font-size: 22px;
		line-height: 32px;
		max-width: 45%;
	}
	.cta_section .cta_box {
		width: 100%;
	}
	footer .footer_logo .site-logo {
		max-width: 150px;
	}
	footer .footer_top .footer_links {
		gap: 20px;
	}
	footer .footer_top .footer_links .footer_link {
		font-size: 16px;
		line-height: 20px;
		gap: 6px;
	}
	.adult_dog_hero_sec .adult_dog_txt h1 {
		font-size: 28px;
		line-height: 38px;
		margin-bottom: 15px;
	}
	.adult_dog_hero_sec .adult_dog_txt p {
		font-size: 18px;
		line-height: 28px;
		margin: 0 0 30px;
	}
	.adult_dog_from_sec .adult_dog_from_wrap {
		border-radius: 60px;
		padding: 60px 40px;
	}
	.adult_dog_from_sec .adult_dog_from_header h2 {
		font-size: 40px;
		line-height: 50px;
	}
	.adult_dog_from_sec .adult_dog_from_header p {
		font-size: 24px;
		line-height: 34px;
		margin: 10px auto 0;
	}
	.thankyou_sec {
		min-height: fit-content;
		padding: 60px 0;
	}
	.thankyou_sec h1 {
		font-size: 40px;
		line-height: 50px;
	}
	.thankyou_sec p {
		max-width: 520px;
		font-size: 20px;
		line-height: 30px;
	}
}
@media only screen and (min-width: 768px) {
	.hero_img {
		display: none;
	}
}
@media only screen and (max-width: 767px) {
	.container {
        max-width: calc(100% - 30px);
    }
	header .site-logo {
		max-width: 150px;
	}
	.hero_section {
		background-image: none;
		min-height: auto;
		align-items: flex-start;
		padding-top: 20px;
	}
	.hero_section .container {
		max-width: 100%;
		line-height: 0;
	}
	.hero_section h1 {
		width: 100%;
		font-size: 36px;
		line-height: 44px;
		max-width: 80%;
		margin: 0 15px 10px;
	}
	.hero_section p {
		font-size: 18px;
		line-height: 26px;
		max-width: 80%;
		margin: 0 15px;
	}
	.cta_section {
		padding: 50px 0;
	}
	.cta_section .container {
		gap: 20px;
	}
	.cta_section .cta_box .cta_box_txt {
		padding: 15px 0 15px 20px;
	}
	.cta_section .cta_box .cta_box_txt h2 {
		font-size: 20px;
		line-height: 30px;
	}
	.cta_section .cta_box .cta_box_txt p {
		font-size: 16px;
		line-height: 26px;
		margin: 5px 0 5px;
	}
	.cta_section .cta_box .cta_box_txt a {
		font-size: 14px;
		line-height: 24px;
		padding: 4px 10px;
		gap: 7px;
	}
	footer .footer_top .footer_links {
		gap: 15px;
		flex-direction: column;
		margin-top: 30px;
	}
	footer .footer_bottom {
		flex-direction: column-reverse;
	}
	footer .footer_bottom .site-info {
		width: 100%;
	}
	footer .footer_bottom p {
		padding-top: 20px;
		text-align: center;
	}
	footer .footer_bottom .footer-social {
		width: 100%;
		justify-content: center;
	}	
	.adult_dog_hero_sec {
		padding: 50px 0;
	}
	.adult_dog_hero_sec .container {
		gap: 20px;
	}
	.adult_dog_hero_sec .adult_dog_img {
		width: 100%;
		text-align: center;
	}
	.adult_dog_hero_sec .adult_dog_txt {
		width: 100%;
	}
	.adult_dog_hero_sec .adult_dog_img img {
		width: 80%;
		margin: auto;
	}
	.adult_dog_hero_sec .adult_dog_txt h1 {
		font-size: 24px;
		line-height: 34px;
		margin-bottom: 10px;
	}
	.adult_dog_hero_sec .adult_dog_txt p {
		font-size: 16px;
		line-height: 26px;
		margin: 0 0 30px;
	}
	.adult_dog_from_sec .adult_dog_from_wrap {
		border-radius: 20px;
		padding: 30px 15px;
		margin-top: -215px;
	}
	.adult_dog_from_sec .adult_dog_from_header {
		margin-bottom: 20px;
	}
	.adult_dog_from_sec .adult_dog_from_header h2 {
		font-size: 20px;
		line-height: 30px;
	}
	.adult_dog_from_sec .adult_dog_from_header p {
		font-size: 16px;
		line-height: 26px;
		margin: 10px auto 0;
	}
	.adult_dog_from_sec .adult_dog_from .signup-form input {
		font-size: 16px;
		line-height: 26px;
		padding: 10px 15px;
	}
	.adult_dog_from_sec .signup-form .phone-otp-group button {
		font-size: 16px;
		line-height: 30px;
		padding: 9px 20px;
	}
	.adult_dog_from_sec .adult_dog_from .signup-form .form-submit button {
		font-size: 20px;
		line-height: 30px;
		padding: 12px 40px;
	}
}