@font-face {
    font-family: 'Gotham';
    src: url('../font/Gotham-Book.woff2') format('woff2'),
        url('../font/Gotham-Book.woff') format('woff'),
        url('../font/Gotham-Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../font/Gotham-Medium.woff2') format('woff2'),
        url('../font/Gotham-Medium.woff') format('woff'),
        url('../font/Gotham-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../font/Gotham-Bold.woff2') format('woff2'),
        url('../font/Gotham-Bold.woff') format('woff'),
        url('../font/Gotham-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../font/Gotham-Black.woff2') format('woff2'),
        url('../font/Gotham-Black.woff') format('woff'),
        url('../font/Gotham-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../font/Gotham-BookItalic.woff2') format('woff2'),
        url('../font/Gotham-BookItalic.woff') format('woff'),
        url('../font/Gotham-BookItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../font/Gotham-Light.woff2') format('woff2'),
        url('../font/Gotham-Light.woff') format('woff'),
        url('../font/Gotham-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../font/Gotham-Thin.woff2') format('woff2'),
        url('../font/Gotham-Thin.woff') format('woff'),
        url('../font/Gotham-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Muli';
    src: url('../font/Muli-ExtraBold.woff2') format('woff2'),
        url('../font/Muli-ExtraBold.woff') format('woff'),
        url('../font/Muli-ExtraBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Muli';
    src: url('../font/Muli-Black.woff2') format('woff2'),
        url('../font/Muli-Black.woff') format('woff'),
        url('../font/Muli-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Muli';
    src: url('../font/Muli-Bold.woff2') format('woff2'),
        url('../font/Muli-Bold.woff') format('woff'),
        url('../font/Muli-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Muli';
    src: url('../font/Muli-Light.woff2') format('woff2'),
        url('../font/Muli-Light.woff') format('woff'),
        url('../font/Muli-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Muli';
    src: url('../font/Muli-SemiBold.woff2') format('woff2'),
        url('../font/Muli-SemiBold.woff') format('woff'),
        url('../font/Muli-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Muli';
    src: url('../font/Muli-Italic.woff2') format('woff2'),
        url('../font/Muli-Italic.woff') format('woff'),
        url('../font/Muli-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Muli';
    src: url('../font/Muli-ExtraLight.woff2') format('woff2'),
        url('../font/Muli-ExtraLight.woff') format('woff'),
        url('../font/Muli-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Muli';
    src: url('../font/Muli-Regular.woff2') format('woff2'),
        url('../font/Muli-Regular.woff') format('woff'),
        url('../font/Muli-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


body {
	color: #000;
	font-family: var(--ff-body);
	counter-reset: section;
}
* {
	text-decoration: none;
	list-style-type: none;
	padding: 0;
	margin: 0;
	box-sizing:border-box;
    -webkit-font-smoothing: antialiased;
}
:root {
	--ff-body: 'Muli';
	--ff-primary: 'Gotham';
	--clr-primary: #FF0000;
	--clr-secondary: #888888;
	--clr-accent: #242424;
	--clr-white: #ffffff;
	--clr-black: #000000;
	--clr-charcol: #1D1D1D;
	--clr-gray: #707070;
}
::selection {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}
::placeholder{
	color: #;
}
dl, ol, ul {
    padding: 0;
	margin: 0;
}
a {
    color: var(--clr-black);
    transition: 0.5s all;
	text-decoration: none;
	cursor: pointer;
}
a:hover {
	text-decoration: none;
}
p {
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    color: var(--clr-accent);
}
p:last-child{
	margin: 0;
}
h1,h2,h3,h4,h5,h6 {
	margin: 0;
    font-weight: normal;
    line-height: normal;
	font-family: var(--ff-primary);
}
h1 {
	font-size: 40px;
}
h2 {
	font-size: 38px;
}
h3 {
	font-size: 35px;
}
h4 {
	font-size: 25px;
}
h5 {
	font-size: 20px;
}
h6 {
	font-size: 18px;
}
section, header, footer {
    width: 100%;
    float: left;
}
section {
    padding: 70px 0;
}
.imgbx {
    width: 100%;
    height: 100%;
}
.imgbx img {
    width: 100%;
    height: 100%;
}
.primary_btn a {
    width: auto;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    padding: 8px 40px;
    border: 1px solid #fff;
    border-radius: 32px;
    color: var(--clr-white);
    display: inline-block;
    background-color: transparent;
}
.primary_btn a:hover {
	color: var(--clr-white);
    border: 1px solid var(--clr-primary);
	background-color: var(--clr-primary);
}

/**** header ****/

.header {
    width: 100%;
    position: absolute;
    z-index: 1;
    text-align: center;
    top: 0;
    padding: 50px 0;
}

/**** banner ****/

.banner {
    width: 100%;
    position: relative;
}
.image-layer {
    width: 100%;
    height: 850px;
    position: relative;
    display: flex;
    overflow: hidden;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}
.image-layer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgb(0 0 0 / 20%);
}
.head-title {
    width: 100%;
    padding-top: 260px;
    position: relative;
}
.head-title h1 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    color: var(--clr-white);
}
.head-title h1 span{
    font-weight: 900;
}
.head-title p {
    font-size: 22px;
    line-height: 50px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--clr-white);
}
.primary_border_btn a {
    width: auto;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    padding: 9px 46px;
    border: 1px solid #fff;
    border-radius: 32px;
    color: var(--clr-white);
    display: inline-block;
    background-color: transparent;
}
.primary_border_btn a:hover {
	color: var(--clr-white);
    border: 1px solid var(--clr-primary);
	background-color: var(--clr-primary);
}
.center_colm_layout {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.title h2 {
    font-size: 38px;
    line-height: 51px;
    font-weight: 700;
    color: var(--clr-white);
}
.text_summary {
    width: 100%;
    float: left;
    margin-bottom: 25px;
}
.text_summary ul {
    padding-top: 25px;
}
.text_summary ul li {
    font-size: 18px;
    line-height: 23px;
    font-weight: 400;
    color: var(--clr-white);
    position: relative;
    width: 50%;
    float: left;
    padding: 10px 0px 10px 20px;
	font-family: var(--ff-body);
}
.text_summary ul li::before {
    content: "";
    left: 0;
    top: 17px;
    width: 10px;
    height: 10px;
    border-radius: 100px;
    position: absolute;
    background-color: var(--clr-white);
}
.title h3 {
    font-size: 35px;
    line-height: 55px;
    font-weight: 500;
    color: var(--clr-accent);
}
.list_summary ul li{
	padding: 35px 0;
}
.list_summary ul li h4 {
    font-size: 25px;
    line-height: 40px;
    font-weight: 600;
    color: var(--clr-accent);
	font-family: var(--ff-body);
}
.middle_colm {
    text-align: center;
    position: relative;
    top: 0;
    right: 40px;
}
.list_summary ul li .dot{
	position: relative;
}
.list_summary ul li .dot::before {
    content: "";
    width: 12px;
    height: 12px;
    float: left;
    margin-right: 6px;
    margin-top: 10px;
    border-radius: 100px;
    display: inline-block;
    background-color: var(--clr-primary);
}
.left_side {
    width: 100%;
    height: 100%;
    display: flex;
	padding: 0 85px;
	position: relative;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.left_side .text_summary h1 {
    font-size: 90px;
    line-height: 90px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--clr-white);
}
.left_side .text_summary h5 {
    font-size: 20px;
    line-height: 36px;
    font-weight: 500;
    color: var(--clr-white);
}
.right_side {
    width: 100%;
    height: 100%;
    padding: 50px 85px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.site_patnership .title h3 {
    color: var(--clr-white);
    line-height: 52px;
	margin-bottom: 25px;
}
.right_side .text_summary p {
    font-size: 20px;
    line-height: 23px;
    font-weight: 400;
    color: var(--clr-white);
}
.abt_package{
    z-index: 1;
}
.abt_package::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 240px;
    left: 0;
    right: 0;
    top: 40%;
    z-index: -1;
    background-color: rgb(255 255 255 / 16%);
}
.abt_package .middle_colm {
    top: 118px;
	right: 0;
}
.abt_package .title h4 {
    font-size: 22px;
    line-height: 55px;
    font-weight: 600;
    color: var(--clr-white);
    font-family: var(--ff-body);
}
.abt_package .list_summary ul {
    padding-top: 20px;
}
.abt_package .list_summary ul li {
    padding: 10px 0 10px 30px;
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
    position: relative;
    color: var(--clr-white);
}
.abt_package .list_summary ul li::before {
    content: url(../images/arrow.png);
    left: 0;
    top: 15px;
    position: absolute;
}
.abt_package .primary_btn {
    position: relative;
    z-index: 1;
    top: 45px;
}
.our_customer .title h2 {
    color: var(--clr-accent);
    margin-bottom: 25px;
}
.our_customer .left_side {
	padding: 0;
}
.our_customer .right_side {
    padding: 0px 60px;
    display: flex;
	align-items: center;
}
.our_customer .right_side .text_summary p {
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
    color: var(--clr-accent);
}
.our_customer .text_summary ul {
    padding-top: 0px;
}
.our_customer .text_summary ul li {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: var(--clr-accent);
    position: relative;
    width: 100%;
    float: left;
    padding: 15px 0px 0px 20px;
}
.our_customer .text_summary ul li::before {
    content: "";
    top: 25px;
    width: 8px;
    height: 8px;
    background-color: var(--clr-accent);
}
.center_colm_layout.abt_offer {
    width: 100%;
    height: 665px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.offer_detail_content {
    width: 100%;
    padding: 140px 40px 0;
    display: inline-block;
}
.offer_detail_content .title h2 {
    margin-bottom: 10px;
}
.text_summary h5 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--clr-white);
    font-family: var(--ff-body);
}
.offer_detail_content .text_summary p {
    color: var(--clr-white);
}
.primary_btn.white_layout a {
    color: var(--clr-black);
    background-color: var(--clr-white);
}
.primary_btn.white_layout a:hover {
    color: var(--clr-white);
	border: 1px solid var(--clr-gray);
    background-color: var(--clr-gray);
}
.footer {
    width: 100%;
    /*margin-top: -60px;*/
    margin-top: -25px;
    text-align: center;
    padding: 70px 0px 30px;
    background-color: var(--clr-accent);
}
.copyright p {
    font-size: 15px;
    line-height: 22px;
    font-weight: 300;
    color: var(--clr-white);
	position: relative;
}
.copyright p::before {
    content: "";
    position: absolute;
    left: 0;
    width: 38%;
    top: 10px;
    border-top: 1px solid #fff;
}
.copyright p::after {
    content: "";
    position: absolute;
    right: 0;
    width: 38%;
    top: 10px;
    border-top: 1px solid #fff;
}

.mobile_show{
	display: none;
}

.offer_detail_content {
    padding: 50px 0 0 100px;
}
.offer_detail_content.right_col {
    width: 100%;
    padding: 0 0;
    display: inline-block;
}
.offer_detail_content .imgbx {
    text-align: center;
    padding: 35px 0 20px;
}
.offer_detail_content.right_col .primary_btn {
    text-align: center;
}
.offer_detail_content .imgbx img {
    max-width: 390px;
    margin: 0 auto;
    text-align: center;
    height: auto;
}

.banner_right_img {
    width: auto;
    text-align: right;
    padding-right: 50px;
    position: relative;
    top: 5px;
}
/*.banner_right_img img {
    width: 400px;
    height: 100%;
    object-fit: contain;
}*/

/*.banner_hover_img {
    width: 600px;
    background-image: url(https://offer.phototrakk1000.com/wp-content/uploads/2023/08/GIRL-NEW-PHOTO-REAR01.png);
    height: 360px;
    transition: 0.5s;
    display: inline-block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
}*/
.banner_hover_img {
    width: 395px;
    background-image: url(https://offer.phototrakk1000.com/wp-content/uploads/2023/08/GIRL-NEW-PHOTO-REAR01.png);
    height: 210px;
    transition: 0.5s;
    display: inline-block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
}
.banner_hover_img:hover {
    background-image: url(https://offer.phototrakk1000.com/wp-content/uploads/2023/08/GIRL-NEW-PHOTO-REAR1.JPG-2.png);
}


.custombox-content .paoc-popup-inr-wrap {
    width: 100%;
    border: 2px solid #FF0000;
}
.custombox-content .paoc-popup .paoc-popup-inr-wrap form .form-group {
    margin: 8px 0;
}
.custombox-content .paoc-popup .paoc-popup-inr-wrap form .form-group input {
    width: 100%;
    height: 40px;
    outline: none;
    padding: 0 10px;
    font-size: 14px;
    border: 1px solid #ccc;
}
.custombox-content .paoc-popup .paoc-popup-inr-wrap form .form-group textarea {
    width: 100%;
    height: 100px;
    outline: none;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
}
.custombox-content .paoc-popup .paoc-popup-inr-wrap form .form-group span.wpcf7-list-item.first {
    margin: 0;
}
.custombox-content .paoc-popup .paoc-popup-inr-wrap form .form-group input[type="radio"] {
    margin: 10px 0 0;
    width: auto;
    height: auto;
}
.custombox-content .paoc-popup .paoc-popup-inr-wrap form .form-group input[type="submit"] {
    width: auto;
    text-align: center;
    margin: 0 auto;
    display: inherit;
    border: none;
    margin-top: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    background-color: #000;
}
.custombox-content .paoc-popup .paoc-popup-inr-wrap form .form-group input[type="submit"]:hover {
    background-color: #FF0000;
}
.custombox-content .paoc-popup-inr-wrap .left_colm.content h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}
.custombox-content .paoc-popup-inr-wrap .left_colm.content .imgbx img {
    margin: 10px 0;
}

.popup_none.row {
    width: 100%;
    /*margin: 70px 0;*/
}
.spu-box .spu-content .left_colm.content h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}
.spu-box .spu-content .left_colm.content .imgbx img {
    margin: 10px 0;
}
.spu-box .spu-content .right_colm.content .signup_form .form-group {
    margin: 8px 0;
}
.spu-box .spu-content .right_colm.content .signup_form input {
    width: 100%;
    height: 40px;
    outline: none;
    padding: 0 10px;
    font-size: 14px;
    border: 1px solid #ccc;
}
.spu-box .spu-content .right_colm.content .signup_form textarea {
    width: 100%;
    height: 100px;
    outline: none;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
}
.spu-box .spu-content .right_colm.content .signup_form form .form-group span.wpcf7-list-item.first {
    margin: 0;
}
.spu-box .spu-content .right_colm.content .signup_form input[type="radio"] {
    margin: 10px 0 0;
    width: auto;
    height: auto;
}
.spu-box .spu-content .right_colm.content .signup_form input[type="submit"] {
    width: auto;
    text-align: center;
    margin: 0 auto;
    display: inherit;
    border: none;
    margin-top: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    background-color: #000;
}
.spu-box .spu-content .right_colm.content .signup_form input[type="submit"]:hover {
    background-color: #FF0000;
}