@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500&display=swap');

@font-face {
    font-family: 'addington_cf_boldbold';
    src: url('../fonts/addingtoncf-bold-webfont.woff2') format('woff2'),
         url('../fonts/addingtoncf-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'addington_cflight';
    src: url('../fonts/addingtoncf-light-webfont.woff2') format('woff2'),
         url('../fonts/addingtoncf-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'addington_cfmedium';
    src: url('../fonts/addingtoncf-medium-webfont.woff2') format('woff2'),
         url('../fonts/addingtoncf-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'addington_cf_regularregular';
    src: url('../fonts/addingtoncf-regular-webfont.woff2') format('woff2'),
         url('../fonts/addingtoncf-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}

@font-face {
    font-family: 'addington_cfmedium_italic';
    src: url('../fonts/addingtoncf-mediumitalic-webfont.woff2') format('woff2'),
         url('../fonts/addingtoncf-mediumitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}

:root {
    --font-main: 'Open Sans';
	--font-bold: 'addington_cf_boldbold';
	--font-medium: 'addington_cfmedium';
	--font-light: 'addington_cflight';
    --font-secondary: 'addington_cf_regularregular';
    --font-italic: 'addington_cfmedium_italic';


	--font-size-h1: 26px;
	--font-size-h2: 24px;
	--font-size-h3: 22px;
	--font-size-h4: 20px;
	--font-size-h5: 18px;
	--line-height-h1: 38px;
	--line-height-h2: 34px;
	--line-height-h3: 32px;
	--line-height-h4: 30px;
	--line-height-h5: 26px;

    /*colors*/
    --color-blue: #2E63D8;
    
}

@media (min-width: 992px) {
	:root {
		--font-size-h1: 42px;
		--font-size-h2: 32px;
		--font-size-h3: 24px;
        --line-height-h1: 58px;
		--line-height-h2: 42px;
        --line-height-h3: 34px;
        
	}	
}

@media (min-width: 1336px) {
	:root {
		--font-size-h1: 48px;
		--font-size-h2: 36px;
        --font-size-h3: 28px;
        --font-size-h4: 24px;
        --font-size-h5: 20px;
		--line-height-h1: 60px;
		--line-height-h2: 46px;
        --line-height-h3: 36px;
        --line-height-h4: 34px;
        --line-height-h5: 26px;
	}	
}

/**** heading ***/
h1{ 
	font-family: var(--font-medium); 
	font-size: var(--font-size-h1);
	line-height: var(--line-height-h1);
}

h2{ 
	font-family: var(--font-medium);
	font-size: var(--font-size-h2);
	line-height: var(--line-height-h2);
}

h3{ 
	font-family: var(--font-medium);
	font-size: var(--font-size-h3);
	line-height: var(--line-height-h3);
}

h4{ 
	font-family: var(--font-medium);
	font-size: var(--font-size-h4);
	line-height: var(--line-height-h4);
}

h5{ 
	font-family: var(--font-medium);
	font-size: var(--font-size-h5);
	line-height: var(--line-height-h5);
}

/**** paragraph****/

p, li{ 
    font-size: 14px;
    line-height: 20px;
    font-family: var(--font-main); 
}
a{ font-size: 14px;}

@media (min-width: 1200px) {

    p, li{ 
        font-size: 16px;
        line-height: 24px;
        font-family: var(--font-main); 
    }
    a{ font-size: 16px;}
}

@media (min-width: 1440px) {
    p, li{ 
        font-size: 18px;
        line-height: 26px;
    }
    a{ font-size: 18px;}
}

a{
	font-family: var(--font-main); 
	text-decoration: none;
}


/*Common*/
    body{ overflow-x:hidden !important; font-family: var(--font-main) !important;}
    .container{ width: 95%; max-width: 1440px;}
    .sp-50{ padding-top:30px; padding-bottom:30px;}
    .spt-50{ padding-top:30px;}
    .spb-50{ padding-bottom:30px;}
    .btn:focus, .btn.focus, a:focus, .swiper-pagination-bullet:focus, button:focus {outline: 0; box-shadow: none !important;}
    .btn{ border-radius: 5px; font-size: 16px; transition: all 300ms linear; border: 0;}
    .btn-rounded{ border-radius: 44px;}
	.btn-black{ background: #151515; color: #fff; padding: 7px 30px;}
	.btn-black:hover{ background: rgba(0, 0, 0, 0.7); color: #fff;}
    .btn-black:active, .btn:focus{background: #151515; color: #fff;}
    .btn-white{ background: #fff; color: #000; padding: 7px 30px; border: 1px solid #fff;}
	.btn-white:hover{ background: transparent; color: #fff;}
    .btn-white:active, .btn:focus{background: #fff; color: #000;}
    .btn-blue{ background: #05254B; color: #fff; padding: 7px 30px; border: 1px solid #05254B; font-family: var(--font-medium);}
	.btn-blue:hover{ background: #05254B; color: #fff; border: 1px solid #05254B;}
    .btn-blue:active, .btn-blue:focus{background: #05254B; color: #fff; border: 1px solid #05254B;}
    .btn-blue-o{ background: #05254B; color: #fff; padding: 7px 30px; border: 1px solid #05254B; font-family: var(--font-medium);}
	.btn-blue-o:hover{ background: transparent; color: #05254B; border: 1px solid #05254B;}
    .txt-blue{ color: #2E63D8;}
    .bg-dblue{background: #05254B;}
    .bg-lpink{ background: rgba(248, 244, 232, 0.5);}
    .bg-dpink{ background: #EFE1E0;}
    .bg-mpink{ background: rgba(239, 225, 224, 0.5);}
    .bg-lblue{background: #D8EEEB;}
    .bg-black{ background: #151515;}
    .bg-grey{background: #F4F4F6;}
    .w-100{ width: 100%;}
    .mt-30{ margin-top: 30px;}
    .mb-30{ margin-bottom: 30px;}
    .page-list{ padding: 0px 0px 0px 20px;}
    .page-list li{ margin-bottom: 10px;}
   
@media (max-width: 767px) {
    .row.col-reverse{ flex-direction: column-reverse;}
    .xs-mb-20{ margin-bottom: 20px;}
    .xs-mb-30{ margin-bottom: 30px;}
}  

@media (min-width: 992px) {
	.container{ width: 90%; max-width: 1440px;}
	span.db{ display: block;}
	.sp-50{ padding-top:50px; padding-bottom:50px;}
	.spt-50{ padding-top:50px;}
	.spb-50{ padding-bottom:50px;}
	.max-800{max-width: 800px; margin-left: auto; margin-right: auto;}
    .max-900{max-width: 900px; margin-left: auto; margin-right: auto;}
    .max-940{max-width: 940px; margin-left: auto; margin-right: auto;}
    .max-980{ max-width: 980px; margin-left: auto; margin-right: auto;}
    .max-1000{ max-width: 1000px; margin-left: auto; margin-right: auto;}
    .btn{ font-size: 18px;}
    .txt-20{ font-size: 20px; line-height: 28px;}
}

@media (min-width: 1600px) {
    .sp-50{ padding-top:70px; padding-bottom:70px;}
	.spt-50{ padding-top:70px;}
	.spb-50{ padding-bottom:70px;}
}

/*Scroll to Top*/
#return-to-top .upIcon{ content: url("../images/top.svg");}
#return-to-top {
    position: fixed;
    bottom: 60px;
    right: 0px;
    background: rgba(131, 157, 181, 0.5);
	/*box-shadow: 0px 0px 1px 1px rgba(255,255,255,0.3);*/
  	padding:5px 8px 9px 10px;
	border-radius:5px 0px 0px 5px;
    display: block;
    text-decoration: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
	 z-index:99;
     font-size: unset;
     line-height: unset;
}
#return-to-top:hover {
   background: rgba(131, 157, 181,1);
}



/*Footer*/

.footer-top{ background: #fff; color: #000; font-weight: 300;}
.footer-top, .footer-top a, .footer-top p{ font-size: 14px;}
.footer-top a{ color: #000; transition: all 300ms linear;}
.footer-top a:hover{color: rgba(0,0,0,0.6);}
.footer-top h5{ font-size: 16px; margin-bottom: 16px; border-bottom: 1px solid #969696; padding-bottom: 10px; margin-bottom: 20px;}
.footer-top ul{ padding: 0 0px 0px 0px;}
.footer-top ul li{ padding-bottom: 10px; list-style-type: none;}
.footer-top ul li a{ color: #000;}
.ftr-email{ position: relative; padding-left: 40px;}
.ftr-email:before{content: url("../images/footer/ftr-email.svg"); position: absolute; left: 0; top: 0; width: 21px;}
.ftr-phone{ position: relative; padding-left: 40px; margin-top: 10px; line-height: 30px;}
.ftr-phone:before{content: url("../images/footer/ftr-flag.svg"); position: absolute; left: 0; top: 0; width: 21px;}

.ftr-social{ margin-top: 30px;}
.ftr-social .c-sml a{ margin: 0px 5px;}
.ftr-social .c-sml a img{ width: 32px; height: 32px;}
.ftr-linkedin{ position: relative; padding-left: 40px; margin-bottom: 10px;}
.ftr-linkedin:before{content: url("../images/footer/ftr-linkedin.svg"); position: absolute; left: 0; top: 2px; width: 21px;}
.ftr-insta{ position: relative; padding-left: 40px;}
.ftr-insta:before{content: url("../images/footer/ftr-insta.svg"); position: absolute; left: 0; top: 2px; width: 21px;}

@media (min-width: 768px) {
    .footer-top h5{ font-size: 18px; padding-bottom: 20px; margin-bottom: 20px;}
}

@media (min-width: 1200px) {
    .footer-top h5{ font-size: 20px; margin-bottom: 20px;}
}

.footer-btm{ background: rgba(202, 202, 202, 0.4); padding: 15px 0px; font-size: 14px; color: #414141;}
.ftr-btm-links{ text-align: center; margin-bottom: 5px;}
.footer-btm .ftr-btm-links a{ color: #414141; font-size: 14px;}
.footer-btm .ftr-btm-links a:hover{color: rgba(0,0,0,1);}
.footer-btm .copy{ text-align: center;}

@media (min-width: 768px) {
    .footer-btm .copy{text-align: right;}
    .ftr-btm-links{ text-align: left; margin-bottom: unset;}
}

.ftr-seo-links{ display: none;}
@media (min-width: 1200px) {
.ftr-seo-links{ display: block;}  
.ftr-seo-links .container{ width: 98%;}
.ftr-seo-links h5{ font-size: 14px; line-height: 18px; margin-bottom: 10px; font-family: var(--font-medium);}
.ftr-seo-links ul{ padding: 0px 0px 0px 0px;}
.ftr-seo-links ul li{list-style-type: none; margin-bottom: 5px; line-height: 16px;}
.ftr-seo-links ul li a{ color: #000; font-size: 12px; line-height: 16px; transition: all 300ms linear;}
.ftr-seo-links ul li a:hover{ color: rgba(0, 0, 0, 0.7);}
.fsl--row1 ul{ margin-bottom: 0;}
.fsl--row{ display: flex; justify-content: space-between;}
.fsl--col{ margin-right: 16px;}
.fsl--col:nth-last-of-type(1){ margin-right: unset;}
}

.ftr-seo-links .rdbtn{ position: relative; color: #3948FF; border: 0; background: transparent; padding: 0; font-size: 14px;}
.ftr-seo-links .rdbtn:hover{ color: #3948FF;}
.ftr-seo-links .rdbtn::after {content: url(../images/contact/down-sm.svg); position: absolute; top: -2px; right: -20px;}
.ftr-seo-links .rdbtn:not(.collapsed)::after {content: url(../images/contact/up-sm.svg); position: absolute; top: -2px; right: -20px;}


/*Swiper Slider*/
.site--slider{ position: relative;}
.site--slider .swiper {width: 100%; height: 100%;}
.site--slider .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: stretch;
    align-items: stretch;
    height: auto;
    margin-bottom: 50px;
}
.site--slider .swiper-pagination-bullet {background: #cccccc; opacity: 1; width: 8px; height: 8px;} 
.site--slider .swiper-pagination-bullet-active{background: #05254B;}
.site--slider .swiper-pagination-bullets.swiper-pagination-horizontal{ bottom:0}

.site--slider .fw-pagi .swiper-pagination-bullet-active, 
.site--slider .ods-pagi .swiper-pagination-bullet-active{
    background: #05254B;
}
/*Swiper Slider End*/

/*Accordion*/
.site-accord .accordion{ border: 0;}
.site-accord .accordion-item {border-bottom: 1px solid rgba(0, 0, 0, 0.2); border-top: 0; border-left: 0; border-right: 0; margin-bottom: 10px; padding-bottom: 20px;}
.site-accord .accordion-item, .site-accord .accordion-button{background: transparent; color: #000;}
.site-accord .accordion-button{ padding:10px 40px 10px 0px; font-size: 16px; line-height: 22px; font-family: var(--font-medium); 
position: relative;}
.site-accord .accordion-body{ padding: 20px 0px 10px; color: #000; font-size: 16px; line-height: 24px;}
.site-accord .accordion-body p{line-height: 24px; font-size: 16px;}
.site-accord .accordion-body ul, .site-accord .accordion-body ol{ padding: 0px 0px 0px 20px;}
.site-accord .accordion-body ul li, .site-accord .accordion-body ol li{ padding-left: 5px;}
.site-accord .accordion-body li{line-height: 24px; font-size: 16px; padding-bottom: 5px;}
.site-accord .accordion-button::after{ content: url(../images/down.svg); background-image: none; font-size: 30px; position: absolute; top: 10px; right: 0;} 
.site-accord .accordion-button:not(.collapsed)::after {content: url(../images/up.svg); background-image: none; transform: none; font-size: 30px;}
.site-accord .accordion-item:nth-last-of-type(1){ border-bottom: 0;}
.site-accord .accordion-header, .site-accord .accordion-button, .site-accord .accordion-collapse, .site-accord .accordion-body{box-shadow:none;}

@media (min-width: 768px) {
	.site-accord .accordion-button::after{top: 20px;}
    .site-accord .accordion-button{ padding:20px 20px 10px 0px; font-size: 24px; line-height: 40px; font-family: var(--font-bold);}
    .site-accord .accordion-body{padding-right: 20px; max-width: 900px;}
}

@media (min-width: 1200px) {
    .site-accord .accordion-button::after{top: 20px; right: 15px; content: url(../images/down.svg);}
    .site-accord .accordion-button:not(.collapsed)::after {content: url(../images/up.svg);}
}
@media (min-width: 1366px) {
    .site-accord .accordion-button {padding-right: 50px;}
}
/*Accordion End*/

.faq-list {
    max-width: 780px;
    margin: auto;
    border: 0;
}
.accordionItem {
            display: block;
            width: 100%;
            background:transparent;
            border-bottom: 1px solid rgba(0,0,0,.125);
            box-sizing: border-box;
            position:relative;
        }
        .accordionItem.close h2::after {
    content: url(/assets/images/down.svg);
    background-image: none;
    transform: none;
    font-size: 30px;
    font-weight: 300;
    position:absolute;
    right:0px;
}
.accordionItem.open h2::after {
    content: url(/assets/images/up.svg);
    background-image: none;
    transform: none;
    font-size: 30px;
    font-weight: 300;
    position:absolute;
    right:0px;
}
        .accordionItemHeading {
            cursor: pointer;
            padding: 10px;
            font-size:20px;
            font-weight:500;
        }

        .close .accordionItemContent {
            height: 0px;
            transition: height 1s ease-out;
            -webkit-transform: scaleY(0);
            -o-transform: scaleY(0);
            -ms-transform: scaleY(0);
            transform: scaleY(0);
            float: left;
            display: block;

        }
.faq-list p, .faq-list li{font-size:16px;}
        .open .accordionItemContent {
            padding: 0 15px;
            background-color: #fff;
            width: 100%;
            margin: 0px 0px 10px 0px;
            display: block;
            -webkit-transform: scaleY(1);
            -o-transform: scaleY(1);
            -ms-transform: scaleY(1);
            transform: scaleY(1);
            -webkit-transform-origin: top;
            -o-transform-origin: top;
            -ms-transform-origin: top;
            transform-origin: top;
            -webkit-transition: -webkit-transform 0.4s ease-out;
            -o-transition: -o-transform 0.4s ease;
            -ms-transition: -ms-transform 0.4s ease;
            transition: transform 0.4s ease;
            box-sizing: border-box;
        }
         .photoshoot_main {
        border-top: 1px solid #aaa;
    }
@media (min-width: 768px) {    
.pe-7 {
    padding-right: 7rem!important;
}
.pl-7 {
    padding-left: 7rem!important;
}.dubai-cont-form-sec .p-5{padding:3rem !important;}
}
.indoor_outdoor_bnr {
    background: url("https://picturequotient.com/images/dubai/indoor-outdoor-banner.jpg") 0 0 / cover no-repeat;
}
	.wedding-photography .tab-swiper {
    position: relative;
    border-radius: 16px;
}

.wedding-photography .tab-swiper .swiper {
    width: 90%;
}

.wedding-photography .tab-swiper .tab-custom {
    padding: 80px 30px 80px 30px;
}

/* .tab-swiper .tab-custom h4{color: #000;font-family: Poppins;font-size: 20px;font-style: normal;font-weight: 600;line-height: normal;} */
.wedding-photography .tab-swiper .tab-custom p {
    font-size: 16px;

}

.wedding-photography .tab-swiper .swiper-slide .tab-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.wedding-photography .tab-swiper .swiper-pagination-bullet-active {
    background: #05254B;
}

.wedding-photography .tab-swiper .swiper-button-next::after {
    content: url('/assets/images/services/wedding-photography/wp/blue-arrow.svg');
}

.wedding-photography .tab-swiper .swiper-button-prev::after {
    content: url('/assets/images/services/wedding-photography/wp/blue-arrow.svg');
    transform: rotate(180deg);

}

@media only screen and (max-width: 1024px) {
    .wedding-photography .tab-swiper .tab-custom p {
        height: 500px;
    }
}

@media only screen and (max-width: 991px) {
    .wedding-photography .tab-swiper .tab-custom p {
        height: 400px;
    }
}

@media only screen and (max-width: 700px) {
    .wedding-photography .tab-swiper .swiper {
        width: 79%;
    }

    .wedding-photography .tab-swiper .swiper-button-next {
        right: 0 !important;
    }

    .wedding-photography .tab-swiper .swiper-button-prev {
        left: 0 !important;
    }

	.wedding-photography .tab-swiper .tab-custom p {
        height: 255px;
        font-size: 14px;
        text-align: center;
    }

    .wedding-photography .tab-swiper .tab-custom h4 {
        font-size: 16px;
        text-align: center;
        line-height: 24px;
    }

    .wedding-photography .tab-swiper .tab-custom {
        padding: 20px 10px;
        height: 500px;
    }

    .wedding-photography .m-db {
        display: block;
    }


}

@media only screen and (max-width: 500px) {
    .wedding-photography .tab-swiper .tab-custom p {
        height: 400px;
    }
}

@media only screen and (min-width: 700px) and (max-width: 1100px) {
    .wedding-photography .tab-swiper .swiper {
        width: 88%;
    }

}