@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

html {
  scroll-behavior: smooth;
}
body, p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 27px;
    color: #1A1A1A;
}
p{
  margin-bottom: 0;
}
b, strong {
    font-weight: 700;
    color: #1C1C1C;
}
.no-padding{
  padding: 0;
}
a{
    font-family: "Inter", sans-serif;
    color: #1C1C1C;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
a:hover{
    text-decoration: none;
}
a:link , a:visited , a:hover, a:active{
    text-decoration: none;
}
h1 , h2, h3, h4, h1 p, h2 p, h3 p{
    font-family: "Inter", sans-serif;
    font-weight: bold;
    line-height: 1.25;
    color: #1C1C1C;
    word-wrap: break-word;
}
.coman-btn a{
    font-family: "Inter", sans-serif;;
}
.slick-slide {
    height: auto;
}
.small_title {
    color: #0876E3;
    line-height: 1.25em;
    font-family: "Inter", sans-serif;
    margin: 0;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
@media (min-width: 1200px){
  .container {
      width: 1370px;
  }
}
/* ================ back to top =================*/
.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  left: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: #000000 url(../images/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: #e86256;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 40px;
    width: 40px;
    left: 30px;
    bottom: 30px;
  }
}

/* ================ end back to top =================*/

/* ================ Loader =================*/
/*.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(../images/loader-64x/Preloader_2.gif) center no-repeat #fff;
}*/

.container-preloader {
    align-items:center; 
    cursor:none; 
    display:flex; 
    height:100%;
    justify-content:center; 
    position:fixed; 
    left:0; 
    top:0; 
    width:100%; 
    z-index:900;
}
.container-preloader .animation-preloader {
    position:absolute; 
    z-index: 100;
}
/* Spinner Loading */
.container-preloader .animation-preloader .spinner {
    animation: spinner 1s infinite linear;
    border-radius: 50%;  
    border: 10px solid rgba(0, 0, 0, 0.2);
    border-top-color: #bfb170; /* It is not in alphabetical order so that you do not overwrite it */
    height: 9em;  margin: 0 auto 3.5em auto; width: 9em;
}
/* Loading text */
.container-preloader .animation-preloader .txt-loading {
    font: bold 5em 'Montserrat', sans-serif;
    text-align: center; 
    user-select: none;
}
.container-preloader .animation-preloader .txt-loading .characters:before {
  animation: characters 4s infinite;  
  color: #1e3859;
  content: attr(preloader-text);  left: 0;
  opacity: 0;  position: absolute;  top: 0;
  transform: rotateY(-90deg);
}
.container-preloader .animation-preloader .txt-loading .characters {
    color: rgba(0, 0, 0, 0.2);  position: relative;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(2):before {
    animation-delay: 0.2s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(3):before {
    animation-delay: 0.4s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(4):before {
    animation-delay: 0.6s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(5):before {
    animation-delay: 0.8s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(6):before {
    animation-delay: 1s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(7):before {
    animation-delay: 1.2s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(8):before {
    animation-delay: 1.4s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(9):before {
    animation-delay: 1.6s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(10):before {
    animation-delay: 1.8s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(11):before {
    animation-delay: 2.0s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(12):before {
    animation-delay: 2.2s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(13):before {
    animation-delay: 2.4s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(14):before {
    animation-delay: 2.6s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(15):before {
    animation-delay: 2.8s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(16):before {
    animation-delay: 3.0s;
}
.container-preloader .loader-section {
  background-color: #ffffff;  height: 100%;
  position: fixed;  top: 0;  width: calc(50% + 1px);
}
.container-preloader .loader-section.section-left {
  left: 0;
}
.container-preloader .loader-section.section-right {
  right: 0;
}
/* Fade effect on loading animation */
.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
/* Curtain effect */
.loaded .loader-section.section-left {
  transform: translateX(-101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}
.loaded .loader-section.section-right {
  transform: translateX(101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}
/* Animation of the preloader */
@keyframes spinner {
to {
    transform: rotateZ(360deg);
}}
/* Animation of letters loading from the preloader */
@keyframes characters {
  0%,
  75%,
  100% {
 opacity: 0;
 transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }}
/* Laptop size back (laptop, tablet, cell phone) */
@media screen and (max-width: 767px) {   
    .container-preloader .animation-preloader .spinner {
        height: 8em;
        width: 8em;
    }
    .container-preloader .animation-preloader .txt-loading {
      font: bold 3.5em 'Montserrat', sans-serif;
    }
}
@media screen and (max-width: 500px) { 
    .container-preloader .animation-preloader .spinner {
        height: 7em;
        width: 7em;
    }
    .container-preloader .animation-preloader .txt-loading {
      font: bold 1em 'Montserrat', sans-serif;
    }
}
/* ================ end Loader =================*/

/* ================ Header =================*/

.header-top .btn-common a {
	background: #0876E3;
	font-size: 16px;
	color: #fff;
	border-radius: 30px;
	padding: 10px 15px;
	font-weight: 500;
	letter-spacing: 0.2px;
}
.header-top {
    position: fixed;
    top: 0px;
    width: 100%;
    left: 0;
    z-index: 9;
    /*background: rgb(16, 28, 66);
    background: linear-gradient(180deg, rgba(16, 28, 66, 1) 0%, rgba(3, 20, 74, 1) 50%, rgba(14, 28, 65, 1) 100%);*/
	background: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
}
.row.header-row {
  	align-content: center;
  	align-items: center;
}
.none-page {
    height: 230px;
}
.single .none-page {
    height: 60px;
}
.page .none-page, .search-results .none-page, .archive .none-page {
    height: 0;
}
a.logo-site img {
    max-width: 100% !important;
    width: 205px !important;
    height: auto !important;
}
/* ====================== End Header =================== */

/* ====================== Slider =================== */
.page-inner h1{
  margin-top: 50px;
  color: #fff;
}
.page-inner h1 p{
  color: #fff;
  font-size: 36px;
  list-style: 51px;
  font-weight: 500;
}
.hero-banner-page {
  padding-bottom: 110px;
  padding-top: 215px;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  height: 490px;
  max-height:490px;
}
.page-id-177 .hero-banner-page {
  padding-bottom: 140px;
}
.hero_title h1 p {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
}
.hero_title{
  text-align: center;
  margin-bottom: 50px;
  margin-top:50px;
}
.hero_title p{
  font-size: 16px;
  color: #000;
}
section.container-fluid.hero-banner-slider {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 70px;
}
.hero-banner-slider .photographer img {
    height: 590px;
    object-fit: cover;
}
.home .hero-banner-page .small_title, .hero-banner-page .small_title{
  color: #fff;
}
.hero-banner-slider .slick-track {
    margin-left: auto;
    margin-right: auto;
}
/* ====================== End slider =================== */

/* ====================== footer=================== */

.footer-top {
  /*background: #252829;*/
  padding-top: 50px;
  padding-bottom: 50px;
  
}
.footer-bottom {
  background: #1B1C1D;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #fff;
}
.footer-bottom ul{
  margin-bottom: 0;
  text-align: right;
  list-style: none;
}
.footer-bottom ul li a{
  color: #fff;
}
.footer-common_row h4 {
  font-size: 15px;
  color: #000;
  margin-bottom: 30px;
}
.footer-common_row,  .footer-common_row a, .footer-common_row p{
  color: #000
}
.footer-common_row ul{
  padding-left: 0;
  list-style: none;
}
.footer-common_row ul li{
  margin-bottom: 10px;
}
.footer-common_row ul li a i{
  font-size: 18px;
  margin-right: 5px;
}
.footer-top .left_links ul li a {
  color: #000;
}
.footer-top .left_links ul{
  padding-left: 5px;
  list-style: none;
  margin-top: 30px;
}
.footer-top .left_links ul li{
  margin-bottom: 8px;
}
.copyright a{
	color: #fff;
}
.address_two p{
	position: relative;
}
.address_two p:first-child {
    margin-bottom: 20px;
}
.address_two p:first-child:after {
    content: '';
    background: #737373;
    width: 40px;
    height: 1px;
    position: absolute;
    bottom: -10px;
    left: 0;
}

/* ====================== End footer =================== */

/* ====================== list_layout =================== */ 
.list-inner {
  border: 1px solid #BFD2E0;
  border-radius: 10px;
  margin-bottom:30px;
}
.list-inner img{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.page-id-189 .list-inner img{
  border-top-left-radius: 0;
  border-top-right-radius:0;
  width: auto;
  height: auto;
  object-fit: unset;
}
.page-id-186 .list-inner-content {
    min-height: 494px;
}
.list-inner-content {
  padding: 25px;
}
.list_layout{
  margin-bottom: 50px;
}
.list-inner.icon_layout img {
  width: 70px;
}
.list-inner.icon_layout {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 20px;
  min-height: 520px;
  background: #fff;
}
.list-inner.icon_layout h4{
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 25px;
}
.list_layout.move_to_top {
  position: relative;
  margin-top: -65px;
}
/* ====================== End list_layout =================== */

/* ====================== plain_text_layout =================== */
.plain_text_layout {
  margin-bottom: 50px;
  margin-top: 50px;
}
.plain_text_layout .para h4{
    font-size: 24px;
    font-weight: 600;
}
.plain_text_layout .para{
  margin-top: 50px;
}
.page-id-176 .plain_text_layout .para {
    margin-top: 0px;
}
.plain_text_layout .small_title {
    margin-bottom: 20px;
}
.page-id-186 .partners_layout {
    text-align: center;
    margin-bottom: 100px;
    margin-top: 100px;
}
/* ====================== End plain_text_layout =================== */

/* ====================== two_column_text_with_image_layout =================== */
.two_column_text ul{
    padding-left: 20px;
}
.two_column_text ul li{
  margin-bottom: 10px;
}
.two_column_text_with_image_layout .top-title {
  margin-bottom: 30px;
}
.two_column_text_with_image_layout{
  margin-bottom: 50px;
}
.two_column_text_with_image_layout.x{
  margin-top: 50px;
  margin-bottom: 0;
}
.two_column_text_with_image_layout .left-title {
  margin-bottom: 20px;
}
/* ====================== End two_column_text_with_image_layout =================== */

/* ====================== faq_layout =================== */
.faq_layout{
  margin-bottom: 50px;
}
.card-link.accordion-title.collapsed{
  color: #1A1A1A;
  background: #fff;
  border-radius: 5px;
}
a.card-link.accordion-title {
  display: inline-block;
  width: 100%;
  background: #0876E3;
  padding: 15px;
  font-size: 17px;
  color: #fff;
  border-radius: 0px;
  font-weight: 500;
}
.collapse.show {
  background: #F8FBFF;
}
.card-header {
  padding: 0;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, .03);
  border-bottom: 0;
}
.card {
  margin-bottom: 10px;
}
a.card-link.accordion-title:after{
  content: "\f078";
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  right: 15;
}
.card-link.accordion-title.collapsed:after{
  content: "\f054";
}
.faq_layout .faq-inner .faq_row h3 {
    margin-bottom: 50px;
    font-size: 24px;
    padding-left: 3px;
}
.faq_row .faq-inner{
  margin-top: 50px;
}
.faq_row {
  margin-top: 50px;
}
.card-body p a{
	font-weight:600;
	color: #0876E3;
}
/* ====================== End faq_layout =================== */

/* ====================== cta_layout =================== */
.icon_with_text_layout {
  padding-top: 80px;
  padding-bottom: 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 50px;
}
.cta_center{
  text-align: center;
}
.cta_center h2{
  font-size: 32px;
  line-height: 52px;
  font-weight: 500;
  margin-bottom: 30px;
}
.cta_center .site_btn a {
  background: #0876E3;
  padding: 15px 30px;
  font-size: 19px;
  color: #fff;
  border-radius: 10px;
  font-weight: 500;
  display: inline-block;
  letter-spacing: 0.5px;
}
.left_cta h2{
  color: #fff;
  margin-top: 0;
}
.left_cta, .left_cta a{
  color: #fff;
}
.left_cta .site_btn a {
  background: #fff;
  color: #0876E3;
  padding: 15px 25px;
  font-size: 18px;
  border-radius: 10px;
  font-weight: 500;
}
.home .left_cta .site_btn a {
    margin-top: 10px;
    display: inline-block;
}
/* ====================== End cta_layout =================== */

/* ====================== team =================== */
.team_inner {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid #BFD2E0;
}
.team_layout {
    margin-bottom: 60px;
}
.team_inner .left {
  padding-right: 45px;
  text-align: center;
}
.team_inner .left img {
    margin-bottom: 20px;
    border-radius: 100%;
    width: 289px;
    height: 289px;
    object-fit: cover;
}
.team_inner .right p{
  color: #000;
}
.social ul{
	padding-left: 0;
	list-style: none;
}
.social ul li{
	display: inline-block;
	margin-right: 3px;
}
.social ul li a {
    display: inline-block;
    background: #BFD2E0;
    width: 38px;
    height: 38px;
	font-size: 21px;
    text-align: center;
    border-radius: 100%;
    color: #fff;
    padding-top: 8px;
}
.social {
    margin-top: 20px;
}
/* ====================== End team =================== */

/* ====================== blog =================== */

.publish-date span {
  color: #000;
  font-weight: 700;
}
.publish-date ul{
  padding-left: 35px;
  margin-bottom: 0;
}
.publish-date{
  display: flex;
  font-size: 12px;
}
.post-cus .bottom h5 {
    font-size: 17px;
    font-weight: 600;
    line-height: 24px;
    margin-top: 15px;
    min-height: 48px;
}
.post-cus .bottom-inner {
    background: #fff;
    padding: 20px;
    min-height: 293px;
}
.page-template-photographer .post-cus .bottom-inner {
    min-height: 160px;
}
.blog .post-cus .bottom-inner {
    min-height: auto;
}
.post-cus .bottom-inner .btn-common{
  margin-top: 20px;
}
.post-cus .bottom-inner .btn-common a {
  color: #0876E3;
  font-size: 16px;
  font-weight: bold;
}
.post-box {
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid #BFD2E0;
  overflow: hidden;
}
.post-box img{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.post-cus{
  margin-top: 80px;
  margin-bottom: 80px;
}
.publish-date img {
  width: 30px;
  height: 30px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-radius: 100%;
  margin-right: 15px;
}
.bottom-inner p{
  font-size: 13px;
}
.author img {
    width: 51px;
    margin-right: 5px;
}
.author{
	font-size:18px;
	font-weight:600;
}
.publish-date-single{
	font-size:16px;	
}
.publish-date-single ul {
    margin-bottom: 0;
    margin-top: 10px;
}
.row.publisher {
    justify-content: space-between;
	margin-bottom: 30px;
}
.row.publisher .left {
    display: flex;
}
.post_title {
    margin-bottom: 30px;
    margin-top: 30px;
}
.post_inner h3 {
    margin-top: 15px;
    margin-bottom: 15px;
}
.post-single.sin {
    margin-top: 80px;
    margin-bottom: 100px;
}
.tags span {
    background: #0876E3;
    text-transform: uppercase;
    padding: 5px 10px;
    font-weight: 700;
    color: #fff;
    border-radius: 7px;
	font-size:14px;
	margin-right:5px;
}
.post_tags{
	margin-bottom:15px;
}
/* ====================== End blog =================== */

/* ====================== price_addon_layout =================== */
.price_addon_layout .title{
  text-align: center;
  margin-bottom: 50px;
}
.more_title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}
.price_row {
  border: 1px solid #BFD2E0;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
}
.price_row ul{
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.price_row h4{
  margin-bottom: 25px;
}
.price_row ul li{
  margin-bottom: 6px;
}
.price_row ul li i {
  color: #24C02A;
  margin-right: 5px;
}
.price_row .price h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 0;
  line-height: 100%;
}
.price_row .price {
  display: flex;
  align-items: flex-end;
}
.price_row .price span {
  font-size: 18px;
  margin-left: 5px;
}
.price_row .site_btn{
  margin-top: 15px;
}
.price_row .site_btn a {
  background: #0876E3;
  padding: 10px 40px;
  font-size: 16px;
  color: #fff;
  border-radius: 6px;
  font-weight: 500;
  display: inline-block;
  width: 100%;
  text-align: center;
}
.fade:not(.show) {
  opacity: 1 !important;
}
.price_tab_layout{
  margin-top: 80px;
  margin-bottom: 50px;
}
.price_tab_layout .title {
  text-align: center;
  margin-bottom: 60px;
}
.price_tab_layout .price_row h4 {
  margin-bottom: 25px;
  border-bottom: 1px solid #BFD2E0;
  padding-bottom: 20px;
}
.price_tab_layout .price_row {
  padding: 25px;
  min-height: 665px;
}
.price_tab_layout .price_row .price h1 {
  font-size: 42px;
}
.price_tab_layout .price_row ul {
  margin-top: 30px;
  margin-bottom: 34px;
  text-align: left;
  display: inline-block;
  width: 100%;
  min-height: 367px;
}
.price_tab_layout .price_row ul li{
  margin-bottom: 13px;
  width: 100%;
  display: inline-block;
}
.price_tab_layout .price_row ul li i, .price_tab_layout .price_row ul li span {
  float: left;
}
.price_tab_layout .price_row ul li i{
  width: 10%;
  margin-top: 6px;
}
.price_tab_layout .price_row ul li span{
  width: 87%;
  line-height: 23px;
}
ul#myTab li a.active {
  background: #0876E3;
  border-radius: 8px;
}
ul#myTab li a.active{
  color: #fff;
}
ul#myTab {
    text-align: center;
    border: 1px solid #BFD2E0;
    margin: 0 auto 60px auto;
    border-radius: 8px;
    display: flex;
    width: auto;
}
ul#myTab li a{
  padding: 10px 15px;
  display: inline-block;
}
/* ====================== End price_addon_layout =================== */

/* ====================== End price_addon_layout =================== */
.partners_layout h4{
  color : #0876E3;
  text-align: center;
  margin-bottom: 30px;
}
.partners_layout{
  text-align: center;
  margin-bottom: 40px;
}
.partners_layout .partners_inner img{
  width: 100%;
}
.partners_layout .partners_inner {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 88px;
	overflow:hidden;
}
/* ====================== End price_addon_layout =================== */

/* ====================== two_column_welcome_layout =================== */
.two_column_welcome_layout .left h1 {
  margin-bottom: 30px;
}
.two_column_welcome_layout .left{
  padding-right: 60px;
}
.two_column_welcome_layout .left p{
  margin-bottom: 5px;
}
.site_btn_welcome a {
  padding: 10px 30px;
  display: inline-block;
  border-radius: 10px;
  border: 2px solid #0876E3;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 19px;
}
.right_images{
  position: relative;
}
.right-images.left {
  position: absolute;
  top: 0;
  left: 0;
}
.right_images {
  /*position: absolute;*/
  left: 0;
  top: 0;
}
.right-images.right {
  position: absolute;
  top: 0;
  right: 0;
}
.right-images.big {
  position: absolute;
  top: 60px;
  left: 95px;
}
.right-images.bottom {
  position: absolute;
  right: 0;
  bottom: -129px;
}
.two_column_welcome_layout .right_full{
  position: relative;
}
.two_column_welcome_layout {
  margin-bottom: 80px;
  margin-top: 80px;
}
.background_image_with_text_layout .site_btn a {
  padding: 10px 30px;
  display: inline-block;
  border-radius: 10px;
  background:  #0876E3;
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 19px;
  color: #fff;
}
.ful-right-images{
	position: relative;
}
.ful-right-images .top-right {
    position: absolute;
    right: -20px; 
	top: -110px;
}
.ful-right-images .top-left {
    position: absolute;
    left: 8px;
    top: -110px;
}
.ful-right-images .bottom-right {
    position: absolute;
    right: -20px;
    bottom: 75px;
    z-index: -9;
}
.ful-right-images .middle {
    position: relative;
    left: 70px;
	top: -5px;
}
.two_column_welcome_layout .right_full .right_bg {
    position: absolute;
    top: -176px;
}
.ful-right-images img {
	width: 70%;
	border-radius: 15px;
}
.ful-right-images .middle img {
    width: 270px;
    height: 335px;
    object-fit: cover;
}
.ful-right-images .top-left img, .ful-right-images .top-right img{
	width: 140px;
    height: 171px;
    object-fit: cover;
}
.ful-right-images .bottom-right img{
	width: 123px;
    height: 150px;
    object-fit: cover;
}
/* ====================== End two_column_welcome_layout =================== */

/* ====================== background_image_with_text_layout =================== */
.background_image_with_text_layout {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 50px;
}
.small-title, .colored_text {
  font-weight: 700;
  font-size: 20px;
  color: #0876E3;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.background_image_with_text_layout h2{
  font-size: 30px;
  margin-bottom: 40px;
  font-weight: 500;
  line-height: 40px;
  color: #000;
}
.testimonilas .site_btn {
  margin-bottom: 40px;
}
.testimonilas .main_title {
  text-align: center;
  margin-bottom: 50px;
}
.testimonilas .main_title p{
  font-size: 18px;
}
.background_image_with_text_layout .main_title h1{
  margin-bottom: 30px;
}
/* ====================== End background_image_with_text_layout =================== */

/* ====================== testimonilas =================== */
.testimonilas .author h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0;
}
.testimonilas .author p{
  color: #555555;
  font-size: 10px;
  line-height: 100%;
}
.testimonial_box_bottom{
  margin-top: 25px;
}
.testimonial_box {
  padding: 25px;
  border: 1px solid #BFD2E0;
  border-radius: 10px;
  margin: 15px;
  background: #fff;
}
.testimonial_box_bottom .left {
  display: flex;
  align-self: center;
  align-items: center;
}
.testimonial_box_bottom .left img{
  width: 24px;
  height: 24px;
  margin-right: 5px;
}
.testimonial_box_bottom .star i {
  color: #E39908;
}
.testimonial_box_bottom {
  display: flex;
  align-content: center;
  justify-content: space-between;
}
.testimonial_box p{
  font-size: 13px;
}
.testimonilas {
  margin-bottom: 80px;
}
.partners_layout .slick-track {
    margin-left: auto;
    margin-right: auto;
}
.slick-dots li button:before {
  font-size: 10px;
  line-height: 15px;
  width: 15px;
  height: 15px;
  content: '•';
  text-align: center;
  opacity: 1;
  color: #D9D9D9;
}
.slick-dots li {
  margin: 0 1px;
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #0876E3;
}
.slick-dots {
  bottom: -50px;
}
/* ====================== End testimonilas =================== */

/* ====================== Contact =================== */
label.con-form-title {
  color: #1A1A1A;
}
.uacf7-row {
  margin-bottom: 20px;
}
button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: 1px solid #42506675;
  padding: 10px;
  border-radius: 5px;
}
button.uacf7-next {
  background: #0876E3;
  border: 0;
  padding: 10px 50px;
  color: #fff;
  float: right !important;
  margin-bottom: 30px;
}
.uacf7-steps.steps-form {
  margin-bottom: 60px;
}
.steps-form .steps-row .steps-step .btn-circle {
  background-color: #ffffff !important;
  color: #1a1a1a !important;
  border: 1px solid #1A1A1A;
  font-size: 15px;
  line-height: 100%;
  left: 0;
  display: inline-block;
  text-align: center;
  padding-left: 11px;
  padding-top: 9px;
  width: 35px;
  height: 35px;
}
.steps-form .steps-row .steps-step .btn-circle.uacf7-btn-active {
  border: 1px solid #0876E3 !important;
  color: #fff !important;
  box-shadow: unset !important;
  transform: scale(1);
}
.steps-form .steps-row .steps-step:before{
  display: none !important;
}
.steps-form .steps-row .steps-step{
  position: relative;
}
.steps-form .steps-row .steps-step:after {
  top: 42px !important;
  bottom: 0 !important;
  position: absolute !important;
  content: " " !important;
  width: 38% !important;
  height: 1px !important;
  background-color: #1A1A1A !important;
  left: 120px;
}
.steps-form .steps-row .steps-step {
  position: relative;
  padding-right: 25px;
}
.steps-form .steps-row .steps-step p {
  line-height: 22px;
  margin-top: 20px;
}
.steps-form .steps-row .steps-step:last-child:after{
  display: none;
}
.steps-form .steps-row .steps-step .btn-circle.uacf7-btn-active, .steps-form .steps-row .steps-step .btn-circle:hover, .steps-form .steps-row .steps-step .btn-circle:focus, .steps-form .steps-row .steps-step .btn-circle:active {
  background-color: #0876e3 !important;
  color: #1a1a1a;
  border: 0;
  color: #fff !important;
}
.contact-form-r {
  border-radius: 30px;
  border: 1px solid #BFD2E0;
  background: transparent;
  padding: 50px;
  margin: 0 auto;
  width: 75%;
}
.steps-form .steps-row::before {
  background-color: transparent !important;
}
.contact_form {
  margin-top: 80px;
  margin-bottom: 80px;
}
.contact_description {
  padding-top: 60px;
  text-align: center;
}
.contact-section h1 p {
  font-size: 48px;
  line-height: 70px;
  font-weight: 600;
}
.contact-section h1{
  margin-top: 40px;
  margin-bottom: 40px;
}
.contact-section h5 {
  font-size: 24px;
  margin-bottom: 20px;
}
.contact-section p{
  font-size: 16px;
}
.colored-description p {
  background: #CAE5FF;
  display: inline-block;
  padding: 10px;
  border: 2px solid #0876E3;
  border-radius: 5px;
}
.colored-description{
  margin-top: 60px;
  margin-bottom: 0px;
}
.colored-description p a {
  color: #0876E3;
  font-weight: 500;
}
/* ====================== End Contact =================== */

/* ====================== End Contact =================== */
.photograhper-box {
  text-align: center;
  border: 1px solid #BFD2E0;
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 30px 20px;
}
.post-cus.photography_section .bottom h5 {
  font-size: 20px;
}
.post-cus.photography_section img, .archive .photograhper-box img, .photograhper-box img  {
    width: 158px;
    height: 159px;
    border-radius: 100%;
}
.post-cus.photography_section .bottom p{
  color: #555555;
  font-size: 15px;
  margin-bottom: 30px;
}
.post-cus.photography_section .bottom-inner .btn-common a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  background: #0876E3;
  padding: 10px 40px;
  border-radius: 5px;
  width: 100%;
  display: inline-block;
}
.post-cus.photography_section .bottom-inner {
  background: #fff;
  padding: 0;
}
.post-search-page{
  margin-top: 50px;
  margin-bottom: 50px;
}
/* ====================== End Contact =================== */

/* ====================== search =================== */
.search-form-custom {
  width: 100%;
  border: 1px solid #BFD2E0;
  padding: 60px;
  border-radius: 14px;
  background: #fff;
}
.searchandfilter ul {
  display: inline-block;
  padding-left: 0;
  margin-bottom: 0;
  width: 100%;
}
.searchandfilter ul li{
  width: 25%;
}
.searchandfilter ul li select{
  border: 1px solid #42506675;
  padding: 15px;
  border-radius: 5px;
  width: 100%;
  font-size: 16px;
  color: #9A9A9A;
}
.searchandfilter ul li input[type="submit"] {
  background: #0876E3;
  color: #fff;
  border: 0;
  padding: 14px;
  width: 100%;
}
.search_row {
  margin-top: -84px;
}
.common-h{
  padding-bottom: 165px;
}
.searchandfilter ul li input[type="submit"]:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f002";
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  font-weight: 900;
}
#mega-menu-wrap-Primary-Menu #mega-menu-Primary-Menu li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
    margin-top: 2px;
}
/* ====================== End search =================== */

/* ====================== schedule page =================== */
.nav-tabs .nav-link.active {
    background: #0876E3;
    font-size: 16px;
    color: #fff;
    border-radius: 0;
    padding: 10px 25px;
    font-weight: 500;
    letter-spacing: 0.2;
	border: 1px solid #0876E3;
}
.nav-tabs .nav-link{
	background: #fff;
    font-size: 16px;
    color: #0876E3;
	border: 1px solid #0876E3;
    border-radius: 0;
    padding: 10px 25px;
    font-weight: 500;
    letter-spacing: 0.2;
	margin-right: 5px;
}
ul.nav.nav-tabs {
    border: 0;
    margin-bottom: 30px;
}
ul.nav.nav-tabs {
    border: 0;
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
    text-align: center;
}
ul.nav.nav-tabs li.nav-item {
    display: inline-block;
}
.page-id-205 .plain_text_layout{
	margin-bottom:0px;
}
div#acuity-footer{
	display: none !important;
}
.schedule-page {
    margin-bottom: 60px;
    margin-top: 150px;
}
/* ====================== End schedule page =================== */

.section-inner.thin.error404-content {
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}
.section-inner.thin.error404-content .back-h a{
  background: #0876E3;
  font-size: 16px;
  color: #fff;
  border-radius: 30px;
  padding: 10px 15px;
  font-weight: 500;
  letter-spacing: 0.2;
}
.section-inner.thin.error404-content .intro-text {
    margin-bottom: 26px;
}
.error404 .page-inner h1 {
    margin-top: 5px;
}

/* ====================== post-single =================== */
.post_pic_row {
  text-align: center;
  position: relative;
  top: -100px;
  width: 100%
}
.post_pic_row.space {
    top: 0;
    margin-bottom: 50px;
}
/*.post-top-section {
    position: relative;
}*/
.post_pic_row img {
    width: 200px;
    margin-bottom: 20px;
    border-radius: 100%;
    height: 200px;
    object-fit: cover;
}
.post_pic_row h3{
  margin-bottom: 5px;
}
.post_pic_row p{
  color: #555555;
}
.post_pic_row .btn-common a {
  background: #0876E3;
  padding: 10px 25px;
  border-radius: 5px;
  color: #fff;
}
.post_pic_row .btn-common{
  margin-top: 30px;
}
.nav-menu .nav-tabs .nav-link.active {
  color: #007FFD;
  background-color: #96BAFF;
  border-color: transparent;
  border-radius: 20px;
  padding: 5px 25px;
  line-height: normal;
}
.nav-menu .nav-tabs .nav-link{
  color: #2E2E2E;
  background-color: transparent;
  border-color: transparent;
  border-radius: 20px;
  padding: 5px 25px;
  line-height: normal;
  font-weight: 600;
}
.nav-menu{
  margin-bottom: 20px;
}
.nav-tabs {
  border-bottom: 0;
}
/*.post-slider-section .slick-slide.slick-active:first-child {
  padding-right: 0px;
  padding-left: 0px;
}*/
.post-slider-section .slick-slide.slick-active:last-child {
  padding-right: 0px;
}
.post-contact-info {
  margin-top: 80px;
  margin-bottom: 80px;
}
.post-contact-info .title{
  text-align: center;
  margin-bottom: 50px;
}
.post-contact-info h3{
  margin-top: 15px;
  margin-bottom: 15px;
  text-align: center;
}
.contact-info {
  margin-bottom: 30px;
}
.contact-info span{
  font-weight: 700;
}
.map_row .btn-common a {
  background: #0876E3;
  padding: 10px 25px;
  border-radius: 5px;
  color: #fff;
}
.map_row .btn-common{
  margin-top: 200px;
}
.post-sstudio-section .small_title {
  text-align: center;
  display: inline-block;
  width: 100%;
  margin-bottom: 40px;
}
.post-sstudio-section .slick-dots {
  bottom: 5px;
}
.single .small_title {
  font-size: 18px;
}
.post-card-section .title {
  text-align: center;
}
.post-card-section .title h3{
  margin-top: 15px;
  margin-bottom: 15px;
  text-align: center;
}
.post-sstudio-section {
  margin-bottom: 50px;
}
.post-card-section .title{
  margin-bottom: 40px;
}
.card-bottom {
  padding: 20px;
}
.card-bottom  h4{
  font-size: 22px;
}
.post-card-section .card {
  border: 1px solid #BFD2E0;
  border-radius: 10px;
  margin-bottom: 30px;
  min-height: 416px;
}
.post-card-section .card img{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.post-card-section{
  margin-bottom: 60px;
}
.photo-about{
  margin-top: 60px;
  margin-bottom: 60px;
}
.related-posts {
    background: #f5f5f5;
    padding: 15px;
}
.related-posts h4 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
}
.related-posts span.timeline-date {
    color: #0876E3;
    font-size: 13px;
    margin-top: 9px;
    display: inline-block;
}
.related-posts .more a {
    padding: 5px 30px;
    display: inline-block;
    border-radius: 10px;
    border: 2px solid #0876E3;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 16px;
    margin-top: 18px;
}
h3.widget-title {
    margin-bottom: 20px;
}
.post-tags ul li{
	margin-bottom:15px;
}
/* ====================== End post-single =================== */

.post-tags ul{
  padding-left: 0;
  list-style: none;
}
.post-tags ul li{
  background-color: #0876E3;
  padding: 2px 15px;
  border-radius: 10px;
  margin-right: 10px;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}
.post-tags{
  margin-bottom: 30px;
}
.post_title{
  margin-bottom: 40px;
}
.profile img {
  width: 51px;
  height: 51px;
  border-radius: 100%;
  margin-right: 5px;
}
.profile{
  font-weight: 600;
}
.blog-profile{
  align-content: center;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  font-size: 17px;
}
.data ul {
  margin-bottom: 0;
}
.blog-single {
  margin-bottom: 100px;
  margin-top: 80px;
}
.hero-banner-post.single-banner-t {
    position: relative;
    height: 620px;
	overflow: hidden;
}
.hero-banner-post.single-banner-t img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* ====================== modal =================== */
.modal-body {
  padding: 0 50px 50px 50px;
  text-align: center;
}
.modal-body .btn-ulr a {
  display: flex;
  width: 100%;
  border: 1px solid #BFD2E0;
  border-radius: 5px;
  padding: 15px;
  align-items: center;
  align-self: center;
  align-content: center;
  text-align: center;
  justify-content: center;
  color: #1A1A1A;
  font-weight: 600;
  margin-bottom: 30px;
}
.modal-body .btn-ulr a:hover, .modal-body .btn-ulr a:link{
  border-color: #0876E3;
}
.modal-body p{
  margin-bottom: 40px;
  margin-top: 20px;
}
.modal-body .flag img {
  width: 50px;
  margin-right: 15px;
}
.btn-ulr {
  align-items: center;
  display: inline-block;
  justify-content: center;
  width: 50%;
}
.modal-header {
  border-bottom: 0;
}
.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  color: #ACACAC;
  text-shadow: unset;
  opacity: 1;
}
@media (min-width: 576px) {
  .modal-dialog {
      max-width: 40%;
  }
}
/* ====================== End modal =================== */

.blog .hero-banner-post, .search-results .hero-banner-post, .archive .hero-banner-post{
  display: none;
}
.post-search-page .btn-common a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  background: #0876E3;
  padding: 10px 40px;
  border-radius: 5px;
  width: 100%;
  display: inline-block;
}
.post-search-page .btn-common {
  margin-top: 20px;
}
.post-search-page .bottom-inner {
  margin-top: 30px;
}

/* ====================== content_slider =================== */
.content_slider_section .slick-dots {
    bottom: 15px;
}
.content_slider_section .site_btn a {
    background: #0876E3;
    border-radius: 5px;
    padding: 10px 20px;
	color: #fff;
}
.content_slider_section .site_btn{
	margin-top: 30px;
}
.content_slider_section h3{
	margin-bottom: 30px;
	color: #fff;
}
.content_slider_section p, .content_slider_section .small_title{
	color: #fff;
}
.content_slider_section {
    position: relative;
    margin-top: 80px;
}
.con-slider {
    position: absolute;
    width: 100%;
    top: 15%;
    left: 0;
    z-index: 1;
}
.content_sl_inner {
    height: 800px;
    background-size: cover;
    background-position: top center;
}
.post-slider .slick-slide img {
    height: 586px;
    overflow: hidden;
    object-fit: cover;
	width: 100%;
	padding-right: 2px;
  	padding-left: 2px;
}
.single-post .post_title {
    margin-top: 0px;
}
.photographer .slick-prev {
    left: 15px;
    z-index: 999;
}
.photographer .slick-next {
    right: 45px;
}
.photographer .slick-prev:before {
	font-family: "Font Awesome 5 Pro";  
	content: "\f053";
	font-size: 3rem;
}
.photographer .slick-next:before {
	font-family: "Font Awesome 5 Pro"; 
	content: "\f054";
	font-size: 3rem;
}
.photographer .slick-prev, .photographer .slick-next {
    width: 30px;
    height: 50px;
}
/* ====================== End content_slider =================== */

div#btypo {
	display: none;
}
.header-top .desktop{
	display: block;
}

/* ====================== Responsive =================== */

@media(max-width:1200px){
  .header-top .container{
		width: 100%;
		max-width: 100%;
  }
  .left_cta .site_btn a {
    padding: 15px 18px;
    font-size: 15px;
  }
  .h2, h2 {
    font-size: 1.8rem;
  } 
  /*.right_images img{
    width: 100%;
  }*/
  .site_btn_welcome a {
    font-size: 16px;
  }
  .page-inner h1 {
    margin-top: 20px;
  }
  .hero-banner-page {
    padding-bottom: 70px;
    padding-top: 150px;
  }
  .page-inner h1 p, .contact-section h1 p{
    font-size: 32px;
    line-height: 45px;
  }
  .contact-form-r {
    width: 100%;
  }
  .steps-form .steps-row .steps-step:after {
    top: 17px !important;
    left: 140px;
  }
  .page-inner h1 p br, .hero_title p br{
    display: none;
  }
  .post-cus.photography_section .bottom-inner .btn-common a {
    padding: 10px 30px;
  }
  .post-cus.photography_section .bottom h5 {
    font-size: 18px;
  }
  .price_tab_layout .price_row .price h1, .price_row .price h1  {
    font-size: 30px;
  }
  .price_tab_layout .price_row ul li span {
    width: 86%;
  }
  .price_row .site_btn a {
    padding: 10px 25px;
    font-size: 15px;
  }
  .price_tab_layout .price_row h4 {
    min-height: 81px;
  }
  .ful-right-images .top-left {
    left: -55px;
    top: -110px;
  }	
  .ful-right-images .middle {
    left: 4px;
  }
}
@media(max-width:1024px){
	.header-top .container{
		width: 100%;
		max-width: 100%;
	}
	.ful-right-images .top-left {
		left: -55px;
		top: -128px;
	}
	.ful-right-images .top-right {
		position: absolute;
		right: -28px;
		top: -128px;
	}
	.ful-right-images .bottom-right {
		right: -25px;
		bottom: 60px;
	}
	.ful-right-images .middle {
		left: -2px;
	}
}
@media(max-width:991px){
  .header-top .container{
	width: 100%;
	max-width: 100%;
  }
  .hero-banner-slider {
    padding-top: 150px;
  }
  .icon_with_text_layout {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .icon_with_text_layout .site_btn {
    margin-top: 35px;
  }
  .right_images {
    top: 20px;
  }
  .background_image_with_text_layout h2 br, .cta_center h2 br{
    display: none;
  }
  .footer-logo-row{
    padding-left: 10px;
    margin-bottom: 30px;
  }
  .copyright {
    text-align: center;
  }
  .two_column_text{
    margin-bottom: 30px;
  }
  .two_column_welcome_layout .left {
    padding-right: 0;
    order: 2;
    margin-top: 0px;
  }
  .two_column_welcome_layout .right_full {
    position: relative;
    order: 1;
  }
  .two_column_welcome_layout .right_full {
	  position: relative;
	  order: 1;
	  margin-top: 55px;
	  margin-bottom: 100px;
  }
  .two_column_text .left{
    order: 2;
  }
  .steps-form .steps-row .steps-step:after {
    top: 17px !important;
    left: 110px;
  }
  .footer-bottom ul {
    text-align: center;
  }
  .list-inner {
    margin-bottom: 30px;
  } 
  .list-inner.icon_layout {
    min-height: auto;
  }
  .price_tab_layout .price_row ul {
    min-height: auto;
  }
  .price_tab_layout .price_row {
    min-height: auto;
  }
  .price_tab_layout .price_row h4 {
    min-height: auto;
  }
  .price_row .site_btn a {
    padding: 10px 5px;
  }
  .con-slider {
    top: 15%;
  }
  .ful-right-images .middle {
	  left: 0;
	  text-align: center;
	  top: 40px;
  }
  .ful-right-images .top-left {
	  left: 110px;
	  top: -65px;
  }
  .ful-right-images .top-right {
	  position: absolute;
	  right: 95px;
	  top: -65px;
  }
  .ful-right-images .bottom-right {
	  position: absolute;
	  right: 95px;
	  bottom: 15px;
	  z-index: -9;
  }
  .page-id-186 .two_column_welcome_layout .right_full .right_bg {
	  position: relative;
	  top: 0;
	}
	.content_sl_inner {
		height: 930px;
	}
}
@media(max-width:767px){
   .header-top .container{
		width: 100%;
	    max-width: 100%;
	}
  .hero_title h1 p {
    font-size: 32px;
  }
  h1, h1 {
    font-size: 2rem;
  }
  .h2, h2 {
    font-size: 1.6rem;
  }
  .two_column_welcome_layout {
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .background_image_with_text_layout h2 {
    font-size: 24px;
    line-height: 36px;
  }
  .small-title, .colored_text {
    font-size: 18px;
  }
  .footer-logo-row {
    margin-bottom: 10px;
  }
  .header-top .btn-common a {
    padding: 5px 15px;
    display: inline-block;
    width: 100%;
    text-align: center;
	border-radius: 0px;
  }
  .row.header-row .left {
    display: inline-block;
    width: auto;
    z-index: 9;
  }
  .team_layout .row.header-row .left {
    z-index: 1;
  }	
  .header-top .middle {
    margin-top: -34px;
    padding: 0;
  }
  .mega-toggle-blocks-right {
    margin-top: -25px;
  }
  .contact-img img{
    width: 100%;
  }
  .page-inner h1 p, .contact-section h1 p {
    font-size: 24px;
    line-height: 34px;
  }
  .contact-section h1 p br, .steps-form .steps-row .steps-step:after, .main_title h1 br {
    display: none;
  }
  .contact-form-r {
    padding: 15px;
    padding-bottom: 35px;
  }
  .steps-form .steps-row .steps-step {
    padding-right: 0;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
  }
  .uacf7-col-6 {
    margin-bottom: 15px;
  }
  .footer-common_row h4 {
    margin-bottom: 15px;
  }
  .cta_center h2 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 20px;
  }
  .cta_center .site_btn a {
    padding: 10px 30px;
    font-size: 16px;
  }
  .two_column_text_with_image_layout {
    margin-bottom: 0;
  }
  #mega-menu-wrap-Primary-Menu #mega-menu-Primary-Menu li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	margin-top: 0 !important;
  }
  .header-top {
    z-index: 9;
  }
  ul#mega-menu-Primary-Menu {
    margin-bottom: 15px !important;
    display: inline-block;
  }
  ul#myTab li {
    display: inline-block;
    width: auto;
  }
  ul.nav.nav-tabs {
    width: 92%;
  }	
  .nav-menu {
    padding: 0;
  }
  .nav-menu ul.nav.nav-tabs {
	  width: 100%;
  }	
  .con-slider {
    top: 11%;
  }
  .content_sl_inner {
    background-position: 90% 100%;
  }
  .right_images {
        top: 40px;
  }
  .plain_text_layout .para, .page-id-183 .plain_text_layout {
		margin-top: 0px;
	}
	.two_column_text_with_image_layout .left-title {
		margin-top: 20px;
	}
	.list_layout.move_to_top {
		margin-top: 30px;
	}
	.searchandfilter ul li {
		width: 100%;
		margin-bottom: 12px;
	}
	.hero-banner-page {
        height: auto;
    }
	.search-form-custom {
		margin-left: 15px;
		margin-right: 15px;
		margin-top: 15px;
	}
	.search_row {
		margin-top: 5px;
	}
}
@media(min-width:768px){
	li#mega-menu-item-438{
		display: none !important;
	}
}
@media(max-width:767px){
	li#mega-menu-item-438{
		display: block;
	}
	.header-top .right {
        display: block;
        margin-bottom: 10px;
    }
	.header-top.fixed-menu .right{
		display: none;
	}
	.hero-banner-page {
        padding-top: 80px;
        height: 230px;
    }
	section.container-fluid.hero-banner-slider {
        margin-top: 90px !important;
        padding-top: 0;
    }
	.home section.container-fluid.hero-banner-slider {
		margin-top: 65px !important;
		padding-top: 0;
	}
	.ful-right-images img {
		width: 70%;
	}
	.ful-right-images .top-left {
        left: 0px;
        top: -30px;
    }
	.ful-right-images .top-right {
        right: -10px;
        top: -30px;
    }
	.ful-right-images .bottom-right {
        right: -10px;
		bottom: -85px;
    }
	.ful-right-images .middle {
        left: -15px;
    }
	.ful-right-images .top-left img, .ful-right-images .top-right img {
		width: 125px;
		height: 151px;
	}
	.ful-right-images .middle img {
		width: 220px;
		height: 250px;
	}
	.ful-right-images .bottom-right img {
		width: 123px;
		height: 150px;
	}
	.two_column_welcome_layout .right_full {
        margin-top: 10px;
        margin-bottom: 0px;
		overflow: hidden;
    }
	.home .two_column_welcome_layout .right_full .right_bg {
        top: 0px;
        height: 240px;
    }
	.hero-banner-slider .photographer .slick-slide {
		height: 480px;
		overflow: hidden;
	}
	.hero-banner-slider .photographer img {
		height: 100%;
		object-fit: cover;
	}
	.two_column_welcome_layout .right_full .row {
		height: 321px;
		overflow: hidden;
	}
	.con-slider {
		position: relative;
		top: 0;
		background: #111111;
		z-index: 0;
	}
	.content_slider_inner {
		padding: 0;
		padding-top: 25px;
		padding-bottom: 50px;
	}
	.content_sl_inner {
        height: 300px;
    }
	.site_btn_welcome a {
		padding: 10px 20px;
	}
	.two_column_welcome_layout .right_full .right_bg {
        height: auto;
		top: 0;
    }
	.content_slider.slick-dotted.slick-slider {
		margin-bottom: 0;
	}
	.content_slider_section .site_btn a {
		padding: 10px 10px;
		font-size: 14px;
	}
	.page-id-186 .list-inner-content {
		min-height: auto;
	}
	.page-id-186 .partners_layout {
		margin-bottom: 50px;
		margin-top: 50px;
	}
	.content_slider_section {
		margin-top: 40px;
	}
	.home .two_column_welcome_layout .right_full .row {
        height: 410px;
        overflow: hidden;
    }
	.partners_layout .partners_inner {
		height: 95px;
	}
	.partners_layout .partners_inner img {
		width: 150px;
	}
	.header-top {
		padding-top: 20px;
		padding-bottom: 0px;
	}
	#mega-menu-wrap-Primary-Menu .mega-menu-toggle.mega-menu-open + #mega-menu-Primary-Menu {
        margin-bottom: 0 !important;
    }
	div#top_margin {
		margin-top: 104px;
	}
	.footer-common_row, .left_links {
		margin-bottom: 30px;
	}
	.footer-common_row, .footer-common_row a, .footer-common_row p, .left_links, .f-logo {
		text-align: center;
	}
	.left_links ul, .policy ul{
		padding-left: 0;
	}
	.address_two p:first-child:after {
		left: 40%;
	}
	.plain_text_layout .para, .page-id-183 .plain_text_layout {
		margin-top: 0px;
	}
	.two_column_text_with_image_layout .left-title {
		margin-top: 20px;
	}
	.list_layout.move_to_top {
		margin-top: 30px;
	}
	.searchandfilter ul li {
		width: 100%;
		margin-bottom: 12px;
	}
	.hero-banner-page {
        height: auto;
        padding-top: 125px;
        padding-bottom: 40px;
    }
	.search-form-custom {
		margin-left: 15px;
		margin-right: 15px;
		margin-top: 15px;
	}
	.search_row {
		margin-top: 5px;
	}
	.list-inner img{
	  width: 100%;
	  height: auto;
	}
	.page-id-186 .list-inner-content {
		min-height: auto;
	}
	.btn-ulr {
		width: 100%;
	}	
	.ful-right-images .middle {
        top: 54px;
    }
	/*.photographer{
		display: none;
	}*/
	div#btypo {
        display: block;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }
	.header-top .desktop{
		display: none;
	}
}
@media(max-width:400px){
	.accordian-l {
		margin-top: 30px;
		margin-bottom: 50px;
	}
}
/* ====================== End Responsive =================== */
.blog .none-page{
	display: none;
}
.btn-common.fixed-btn a {
  position: fixed;
  right: 0px;
  top: 30%;
  width: 40px;
  font-size: 1em;
  font-weight: 400;
  text-transform: uppercase;
  font-style: normal;
  text-decoration: none;
  line-height: .9em;
  letter-spacing: .5px;
  fill: #FFFFFF;
  color: #fff;
  background-color: #2d8f39;
  border-style: solid;
  border-color: #2d8f39;
  box-shadow: -5px 5px 10px 0 rgba(39, 25, 7, .2);
  padding: 15px 8px;
  border-radius: 5px;
  display: inline-block;
  writing-mode: vertical-lr;
  text-orientation: upright;
  z-index: 9;
}

.wonderplugin-gridgallery-item-visible a {
    display: none;
}
div#html5-watermark div {
    background-color: transparent !important;
    display: none;
}
.portfolio_inner ul{
	text-align: center;
	margin-bottom: 60px;
}
.portfolio_inner ul li{
    display: inline-block;
	margin-left: 5px;
	margin-right: 5px;
}
.portfolio_inner ul li:first-child{
	margin-left: 0px;
}
.portfolio_inner ul li:last-child{
	margin-right: 0px;
}
.portfolio_inner ul li a.active {
    background: #96baff75;
    color: #007FFD;
    font-weight: 600;
}

.portfolio_inner ul li a {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 25px;
}
.portfolio_inner {
    margin-bottom: 80px;
}
select#tab_selector {
    margin-bottom: 30px;
}
div#html5-lightbox-box {
    margin-top: 60px !important;
}
.portfolio_layout {
    margin-top: 80px;
}
div#tab2 img.wonderplugin-gridgallery-item-img, div#tab3 img.wonderplugin-gridgallery-item-img,
div#tab6 img.wonderplugin-gridgallery-item-img{
    height: 100% !important;
    object-fit: cover !important;
}
.hero-banner-slider .site_btn{
	text-align: center;
	margin-bottom: 30px;
}
.hero-banner-slider .site_btn a {
    padding: 10px 30px;
    display: inline-block;
    border-radius: 10px;
    background: #0876E3;
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 19px;
    color: #fff;
}
.accordian-l {
    margin-top: 100px;
    margin-bottom: 50px;
}
.location_main_title{
	text-align: center;
	margin-bottom: 50px;
}
.location_main_title h3 {
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
}
.photographer_card {
    background: #fff;
    border-radius: 20px;
	margin-bottom: 80px;
}
body.single.single-locations {
    background: #f4f8fb;
}
body.single.single-locations .tab-content {
    width: 100%;
    margin-top: 100px;
	margin-bottom: 50px;
}
div#studio .post-contact-info {
    margin-top: 0;
    margin-bottom: 0;
}
.right_photographer {
    padding-right: 20px;
    padding-left: 15px;
	padding-top: 25px;
}
.col-md-4.map_row img {
    width: 100%;
    padding-left: 20px;
}
.right_photographer h3{
	margin-bottom: 20px;
}
.photographer_card .site_btn a {
    padding: 10px 40px;
    display: inline-block;
    border-radius: 10px;
    background: #0876E3;
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 19px;
    color: #fff;
}
.photographer_card .site_btn{
	text-align: left;
	margin-top: 20px;
}
.studiot-slider img {
    border-radius: 20px;
}
.rtby {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    height: 100%;
}
.rtby_slider {
    margin-top: -40%;
}
.rtby h3{
	margin-bottom: 20px
}
.rtby ul, .rtby ol{
	padding-left: 15px;
}
.rtby ul li, .rtby ol li{
	margin-bottom: 8px;
}
.rtyu-link {
    text-align: center;
    margin-top: 30px;
}
.rtyu-link a {
    padding: 10px 40px;
    display: inline-block;
    border-radius: 10px;
    background: transparent;
	border: 1px solid #0876E3;
    margin-bottom: 30px;
	color: #0876E3;
    font-weight: 500;
    font-size: 19px;
}
.tab-content>.tab-pane{ 
	display: block; 
	height: 0px; 
	overflow: hidden; 
}
.tab-content>.active{ 
	height: initial;
}
#about_city .post-contact-info h3 {
    text-align: left;
}
div#Overview .rtyu-link {
    text-align: left;
    margin-top: 30px;
}
.image-sec {
    margin-bottom: 70px;
}
div#Overview .slick-dots {
    bottom: 13px;
}
.play-btn {
    font-size: 100px;
    position: absolute;
    top: 35%;
    left: 42%;
	color: #fff;
}
.videop{
	position: relative;
}
.loca-full-width {
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
	padding-top: 80px;
	padding-bottom: 80px;
	color: #fff;
}
.loca-full-width p{
	font-size: 18px;
	margin-bottom: 15px;
	color: #fff;
}
div#about_city .about {
    margin-bottom: 80px;
}
div#studio .map{
	margin-bottom: 40px;
}
div#about_city .post-contact-info {
    margin-top: 80px;
    margin-bottom: 0px;
}
div#about_city .slick-dots {
    bottom: 20px;
}
div#services .site_btn{
	text-align: center;
}
div#services .site_btn a {
    padding: 10px 30px;
    display: inline-block;
    border-radius: 10px;
    background: #0876E3;
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 19px;
    color: #fff;
}
.overview-location .studiot-slider img, .studiot-slider-new img {
    border-radius: 20px;
}
.tabbable {
    width: 100%;
    overflow: hidden;
}
.testimonials-box {
    padding: 30px;
    background: #fff;
    margin: 15px;
    border-radius: 20px;
	margin-top:10px;
}
.testimonials-bottom {
    display: flex;
    justify-content: space-between;
	margin-top: 30px;
}
.testimonials-bottom .right i {
    color: #f3bc52;
}
.left-img {
    display: flex;
    align-content: center;
    align-items: center;
}
.left-img-left{
	margin-right: 10px;
}
.left-img-right p{
	font-weight: bold;
	margin-bottom: -6px;
    line-height: normal;
	font-size: 12px;
}
.left-img-right span{
	font-size: 8px;
	margin-bottom: 0;
    line-height: normal;
}
.revire_code .slick-dots {
    bottom: -25px;
}
.post-fea-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.post-fea-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media(max-width: 767px){
	.nav-menu .nav-tabs .nav-link {
		margin-bottom: 20px;
	}
	body.single.single-locations .tab-content {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	.image-sec {
		margin-bottom: 30px;
	}
	.video-con {
		margin-bottom: 30px;
		text-align: center;
	}
	.map-row-left{
		order: 2;
	}
	.map-row-right{
		order: 1;
	}
	.rtby_slider {
		margin-top: -20%;
	}
	.rtby {
		padding: 20px;
	}
	.city_overview{
		text-align: center;
		margin-bottom:30px;
	}
	#about_city .post-contact-info h3{
		text-align: center;
	}
	.image-sec iframe {
		width: 100%;
		height: 265px;
	}
	.col-md-4.map_row img {
		width: 100%;
		padding-left: 0;
	}
	.map iframe {
		width: 100% !important;
	}
}
@media only screen and (min-width: 769px) {
    #mega-menu-wrap-Primary-Menu #mega-menu-Primary-Menu li.mega-menu-flyout li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
        position: absolute;
        right: 0;
    }
}
.btn-pop{
	display: none;
}
.btn-pop a {
    display: inline-block;
    background: #0876e3;
    width: 100%;
    padding: 5px 11px;
    color: #fff;
}
.btn-pop.current{
	display: block;
}
/*------------------------ Old Layout -------------------- */

.contact_layout .list-inner-content i {
  font-size: 42px;
  margin-bottom: 15px;
}
.contact_layout .list-inner-content {
  padding: 25px;
  min-height: 255px;
}
.contact_layout, .old-two-col{
  margin-top: 80px;
  margin-bottom: 80px;
}
.old-two-col{
  margin-bottom: 0px;
}
.contact_layout .form input, .form, textarea {
  padding: 10px;
  border-radius: 5px;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.contact_layout .form .wpcf7-list-item {
  display: inline-block;
  margin: 0;
  width: 100%;
}
.contact_layout .form input[type="checkbox"] {
  width: auto;
  margin-right: 5px;
}
.contact_layout input.wpcf7-form-control.wpcf7-submit.has-spinner {
  background: #0876E3;
  font-size: 16px;
  color: #fff;
  border-radius: 30px;
  padding: 10px 35px;
  font-weight: 500;
  width: auto;
}
.testimonials_layout .top {
  display: flex;
  align-content: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.testimonials_layout .top .left i {
  font-size: 16px;
  color: #0876E3;
}
.testimonials_layout .testi-y {
  background: #e5e5e5;
  padding-left: 30px;
  padding-top: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  border-radius: 10px;
}
.testimonials_layout .title {
  text-align: center;
  margin-bottom: 30px;
}
.testimonials_layout{
  margin-bottom: 60px;
}
.testimonials_layout .right i {
  font-size: 36px;
}
.testimonials_layout .btn-i{
  margin-top: 60px;
  text-align: center;
}
.site_btn_welcome {
  margin-right: 15px;
  display: inline-block;
}
img.alignright { 
  float: right; 
  margin: 0 0 1em 1em; 
}
img.alignleft { 
  float: left; 
  margin: 0 1em 1em 0; 
}
img.aligncenter { 
  display: block; 
  margin-left: auto; 
  margin-right: auto; 
}
.alignright { 
  float: right; 
}
.alignleft { 
  float: left; 
}
.aligncenter { 
  display: block; 
  margin-left: auto; 
  margin-right: auto; 
}
.blog-content a {
  text-decoration: underline;
  color: #000;
}
.blog-single img {
  margin-bottom: 10px;
}
.old-two-col .rtyu-link {
    text-align: left;
    margin-top: 30px;
}
div#Schedule_a_Booking {
    scroll-margin-top: 500px;
}
.data ul {
    margin-bottom: 0;
    margin-left: 0;
    padding-left: 0;
}
.publish-date ul {
    padding-left: 0;
}
.publish-date ul li, .data ul li{
	list-style: none;
}