/* General Styles */
.page-container {
    padding-left: 0;
    padding-right: 0;
}

/* Passport Express Section */
.passport-express {
    background-color: white !important; /* White background */
    /*padding: 25px;*/
}

/* Passport Pro Section */
/* Passport Pro Section */
.passport-pro {
    background-color: #303030; /* Background color */
    color: #fff; /* Text color */
    padding: 30px 0; /* Add padding to top and bottom */
}
/* Passport Pro Button Specific Styling */
.passport-pro .enterbtn {
    background: #f6931d; /* Default background */
    color: #fff; /* Text color */
    padding: 15px 30px; /* Button padding */
    font-size: 18px; /* Font size */
    display: inline-block; /* Ensure it behaves like a button */
    border-radius: 30px; /* Rounded corners */
    text-align: center; /* Center text */
    margin: 0px auto; /* Center horizontally */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out; /* Smooth transition */
}

/* Hover effect for passport-pro Enter button */
.passport-pro .enterbtn:hover {
    background: #f6931d; /* Hover background */
    color: #fff; /* Ensure the text color stays white */
}

/* Ensure the text color inside the Enter button remains white */
.passport-pro .enterbtn a {
    color: white;
    text-decoration: none; /* Remove underline from link */
}

/* Hover effect for the link inside the Enter button */
.passport-pro .enterbtn a:hover {
    background: #f6931d; /* Hover background */
    color: white; /* Keep text white */
}

/* Passport Pro Content */
.passport-pro h2, .passport-pro h4, .passport-pro p {
    color: #fff; /* Ensure headings and paragraphs have white text */
}

/* Styling for the thumbnails */
.passport-pro .thumbnail-container a img {
    border: 2px solid #fff; /* Optional: white border around thumbnails */
    border-radius: 10px; /* Optional: rounded corners for thumbnails */
}

/* Ensure the button text inside the passport-pro section is white */
.passport-pro .enterbtn a {
    color: white;
    text-decoration: none;
}


/* Photographer Section */
.photographer {
    background-color: white !important; /* White background */
    padding: 25px;
}

/* Row and Column Styles */
.row {
    margin-left: 0;
    margin-right: 0;
}

.col-md-6 {
    /*padding-left: 0;*/
    /*padding-right: 0;*/
}

h2, h4 {
    text-align: center;
}

p {
    color: black;
    text-align: justify;
    margin: 25px;
}

/* Buttons */
.enterbtn {
    background: linear-gradient(45deg, #0E3151, #083c53);
    border-radius: 30px;
    padding: 15px 30px;
    font-size: 18px;
    transition: background 0.3s ease-in-out;
}

.enterbtn:hover {
    background: linear-gradient(45deg, #083c53, #0E3151);
}

.enterbtn a {
    color: white;
    text-decoration: none;
}

/* Images */
.main-image {
    width: 100%; /* Adjust to 100% to ensure responsiveness */
    max-height: 400px; /* Fix the max height */
    object-fit: cover; /* Ensures aspect ratio is maintained */
    transition: transform 0.3s ease-in-out;
}

.main-image:hover {
    transform: scale(1.05);
}

.thumbnail-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.thumbnail-container img {
    width: 150px; /* Fixed width for thumbnail images */
    height: 150px; /* Fixed height for thumbnails */
    object-fit: cover; /* Maintains aspect ratio */
    transition: transform 0.3s ease-in-out;
}

.thumbnail-container img:hover {
    transform: scale(1.05);
}

/* Bullet List Container */
.bullet-list-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    width:100%;
}

.bullet-list {
    list-style-type: none;
    padding: 0;
}

.bullet-list li {
    padding-left: 10px;
}
/* Button Styles */
/* Center the Enter button */


/* Button hover effect */
/* Style for the Enter button */
/* Container for the button to center it */
.page-container .product-item {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically (optional) */
    text-align: center; /* Center text within the container */
    /*padding: 20px;*/
}

/* Style for the Enter button */
.enterbtn {
    /* background: #0E3151; Default background */
    color: #fff !important; /* Text color */
    padding: 12px 20px;
    font-size: 16px;
    text-align: center;
    border-radius: 30px;
    display: inline-block;
    transition: background 0.3s ease, color 0.3s ease; /* Smooth transition */
    text-decoration: none; /* Remove underline from link */
    cursor: pointer; /* Pointer cursor */
    margin-top: 20px; /* Optional spacing from content */
    font-weight: 400;
}
/* Button Styling */
.btn.enterbtn {
    background-color: #f6931d; /* Primary button background color */
    border-color: #fff; /* Border color for the button */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

/* Button Hover Effect */
.enterbtn:hover {
    background-color: #f6931d; /* Darker background color on hover */
    border-color: #fff; /* Darker border color on hover */
    transform: scale(1.05); /* Slight zoom effect on hover */
}
/* Hover effect for the Enter button */
.enterbtn:hover {
    background-color: #f6931d; /* Hover background color */
    color: #fff; /* Ensure text color stays white on hover */
}




/* General Image Styling */
img.img-fluid {
    width: 100%; /* Ensures responsiveness */
    height: auto; /* Adjusts height automatically to maintain aspect ratio */
    object-fit: cover; /* Ensures the image covers its container without distortion */
}

/* Main Image in Passport Express and Passport Pro */
.main-image {
    max-width: 100%; /* Ensure the image does not overflow its container */
    max-height: 400px; /* Fix the max height */
    object-fit: cover; /* Ensures aspect ratio is maintained */
}

/* Thumbnail Images */
.thumbnail-container img {
    width: 150px; /* Set fixed width for thumbnail images */
    height: 150px; /* Set fixed height for thumbnails */
    object-fit: cover; /* Ensures aspect ratio is maintained */
    transition: transform 0.3s ease-in-out;
}

.thumbnail-container img:hover {
    transform: scale(1.05); /* Slight zoom on hover for thumbnails */
}

/* Passport Express Section */
.passport-express img {
    width: 100%;
    height: auto; /* Make sure the image is responsive */
    object-fit: fill; /* Keeps the aspect ratio intact */
}

/* Passport Pro Section - Main Image */
.passport-pro .main-image {
    max-width: 100%;
    max-height: 400px; /* Set max height */
    object-fit: fill; /* Maintain aspect ratio */
}

/* Photographer Section */
.photographer img {
    width: 100%;
    height: auto; /* Adjust height according to aspect ratio */
    object-fit: cover; /* Ensure it fits the container */
}

/* Ensure all images in thumbnails are consistently sized */
.thumbnail-container img {
    width: 150px; /* Fixed width for all thumbnail images */
    height: 150px; /* Fixed height for all thumbnail images */
    object-fit: cover; /* Ensures images fill the space appropriately */
}

/* For the Request a Photographer Section */
.photographer img {
    width: 100%;
    max-height: 400px; /* Set the max height for the main image */
    object-fit: cover; /* Maintain aspect ratio */
}


/* Responsive Layout */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
        text-align: center;
    }

    .col-md-6 {
        margin-bottom: 20px;
    }

    .thumbnail-container {
        display: block;
    }

    .thumbnail-container a {
        margin-bottom: 10px;
    }

    .main-image {
        width: 100%; /* Ensure full-width on small screens */
        height: auto; /* Let the height adjust automatically */
    }
}


 /*new css add */
 .grid_new_img img {
    height: 80px!important;
    width: 100%important;
    object-fit: fill;
}
.bu_iner_ew a.btn.enterbtn {
    display: block;
    border-radius: 0!important;
    padding: 8px 0!important;
    font-size: 16px;
    text-transform: capitalize;
}
.bu_iner_ew  a.btn.enterbtn:hover {
    background-color: #f6931d!important;
    color: #fff;
}
.newkadjs_aqkw_bun a.btn.enterbtn {
    display: block;
    border-radius: 0;
    background: #fff;
    color: #000!important;
    padding: 5px 0!important;
    font-size: 16px;
    text-transform: capitalize;
}
.newkadjs_aqkw_bun a.btn.enterbtn:hover {
    background: #f6931d!important;
     color:#fff!important;
   
}
.bu_iner_ew a:hover {
    background: #f6931d!important;
}
.bu_iner_ew {
    overflow: hidden;
    width:100%;
}
.chenge_P_margin p {
    margin: 0;
    margin-bottom:0px;
    font-size:16px;
}
p.setep_uload_na_box {
    margin-top: 12px;
}
.col-md-6.grid_mar_lef {
    padding-left: 25px;
}
a.big_img_hover {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    /*margin-bottom: 30px;*/
    width:100%;
}
.col-md-6.grid_mar_lef h2 {
    font-size: 22px;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
}
.grid_new_img {
    margin-bottom: 12px;
}
.Pricing_cen_call {
    text-align: center;
    display: block;
    font-size: 20px;
    margin-bottom: 12px;
}
.E_Studio_box h2 {
    font-size: 22px;
    margin-bottom: 5px;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
}
.E_Studio_box p {
    margin:0px;
    font-size:16px;
}
.E_Studio_box .grid_new_img img {
    height: 100px!important;
}
.setep_one_to_box {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.setep_items {
    border: 8px solid #fff;
    width: 16%;
    position: relative;
}
.setep_items {
    border: 2px solid #fff;
    width: 17%;
    position: relative;
    z-index: 11;
}
.arrow_righ_aff {
    width: 54px;
    height: 72px;
    position: absolute;
    background: #d2d2d2;
    transform: rotate(40deg);
    right: -5px;
    z-index: -1;
    top: 43%;
}   
.setep_items h4 {
    background: grey;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px!important;
    font-weight: 500;
    padding: 8px 0;
    margin-bottom: 0 !important;
}
.setep_items p {
    color: #000;
    font-size: 15px;
    line-height: normal;
    padding: 11px 5px;
    display: flex;
    height: 114px;
    align-items: center;
    text-align: center;
    background-color: #d2d2d2;
}
.bullet-list li {
    padding: 0;
    text-align: left;
    font-size: 16px;
    margin-bottom: 8px;
}
.single-footer.links h4 {
    text-align: left;
}
.footer .copyright .right p {
    margin: 0;
}
.about_new_con_cxa {
    margin-bottom: 15px;
  }  
 .about_new_con_cxa h3 {
    font-size: 25px;
    margin-bottom: 12px;
}
  .about_new_con_cxa p {
    margin: 0;
    margin-bottom: 12px;
    font-size: 14px;
}
.about_new_con_cxa li {
    font-size: 14px;
    list-style: disc;
     margin-bottom: 5px;
}
.about_new_con_cxa ul {
  padding-left: 17px;
}
  .about_new_con_cxa  h5 {
    font-size: 16px;
    margin-bottom: 12px;
}

.product-item h4 {
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
}
.col-md-6.grid_mar_lef strong {
    display: block;
    font-size: 16px;
    margin-top: 10px;
}
.col-md-6.grid_mar_lef.Request_img_jdfhjsj .thumbnail-container img {
    height: 95px!important;
}
.product-item.chenge_P_margin h5 {
    font-size: 20px;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}
.previewImg_img_upload_new_aqew_button label {
    cursor: pointer;
}

/*----------------------? mett_offccc/*/
strong.Pricing_cen_call {
    font-size: 20px!important;
    margin-bottom: 13px!important;
}
.passport-express {
    /*height: 95vh;*/
    display: flex;
    align-items: center;
}
.passport-pro, .passport-express {
    /*height: 95vh;*/
    display: flex;
    align-items: center;
    /*overflow: hidden;*/
        /*padding: 40px 0*/
}
.product-item h4 {
    margin-bottom: 20px;
}
.passport-express .col-md-6 ,.passport-pro .col-md-6.E_Studio_box{
    display: flex;
    flex-wrap: wrap;
    width:100%;
    overflow: hidden;
}
.newkadjs_aqkw_bun {
    width: 100%;
}
.container-fluid.passport-express,.container-fluid.Professional_pgototo_grpy  {
    padding: 40px 0;
}
.passport-express .Button_new_class_colr_add {
    margin-top: 15px;
    display: flex;
    margin: auto 0 0;
}
a.big_img_hover.passport_hit_img_mq img.main-image {
    height: 100%;
}
a.big_img_hover.passport_hit_img_mq {
    height: auto;
    margin-bottom: 15px;
}
p.majar_setp_marginh_nbotd {
    margin-bottom: 12px;
}
h4.h4_siheight_oq_text {
    font-size: 20px;
    margin-bottom: 12px;
}
h2.main_heding_to_sb_HEAD{
    margin-bottom: 15px;
}
.Button_new_class_colr_add {
    display: flex;
    margin: auto 0 0;
}




