/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
/* scroll bar */




::-webkit-scrollbar {
    -webkit-appearance: none;
}
::-webkit-scrollbar {
  width: 15px;
}
 
::-webkit-scrollbar-track {
 background: #000000;
}
 
::-webkit-scrollbar-thumb {
     background: #fdb900;
    box-shadow: 0px 0px 8px 5px #808080;
    height:100px;
    border-radius:8px;
	
}
 
::-webkit-scrollbar-thumb:hover {
  background: #7a7a7a; 
}
/* scroll bar */


html, body {

    overflow-x: hidden; 
	  -webkit-overflow-scrolling: touch; 

}

button, input, textarea {
  -webkit-appearance: none; 
  appearance: none;
  border-radius: 0; 
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

main {
    margin-bottom: 16%;
}

.custom-header {
	display: flex;
    color: white;
    padding: 0px;
    text-align: center;
    justify-content: flex-start;
    align-items: center;
	 margin-bottom: -7%;
}

.logo_warpp {
    padding: 0px;
    width: 15%;
}

img#logo {
    width: 40%;
    padding: 0px;
}

        .all-head {
            position: fixed;
            z-index: 1000;
            display: flex;
            width: 100%;
            top: 0;
            align-items: center;
            background: #0000007d; 
            padding: 0.5% 2% 0.5% 5%;
            transition: background 0.3s ease; 
        }
        .all-head.scrolled {
            background: #000000; 
        }

.menu_warpp {
    width: 65%;
    display: flex;
	justify-content: center;
}

.primary-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
	 gap: 20px;
	width: 100%;
}

button{
	width:290px;
	padding:5px;
	font-size:24px;
	border-radius:15px;
	transition:0.4s;
}



p#textinfi {
    font-size: 20px;
    margin-top: 10px;
}

.primary-menu li {
    position: relative;
   
}


.menu-item.has-dropdown > a::after {
    content: '▼';
    margin-left: 5px;
    font-size: 12px;
    color: #979796;
    transition: transform 0.2s ease; 
}


.menu-item.has-dropdown > .sub-menu {
    display: none; 
    position: absolute;
    left: 0;
    top: 100%;
	width:250px;
    background: #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
	gap:20px;

}


.menu-item.has-dropdown:hover > .sub-menu {
    display: flex; 
	flex-direction: column;
    align-content: center;
    justify-content: center;
	gap:20px;
	padding:20px 5px;
	align-items:center;

}


.menu-item.has-dropdown:hover > a::after {
    transform: rotate(180deg); 
}


.menu-item.has-dropdown > a {
    position: relative;
    display: inline-block;
    text-decoration: none; 
    padding: 5px 10px; 
}


.menu-item.has-dropdown > .sub-menu li a {
    padding: 5px 15px;
    color: #fff;
    text-decoration: none;
    display: block;
    transition: background 0.2s ease;
}

.menu-item.has-dropdown > .sub-menu li a:hover {
    background: #333; 
    color: #FF9800;
	width:100%;
	font-size:16px;
	padding:0px;
	margin-top:10px;
	margin-bottom:10px;
	padding:10px;
	box-shadow:none;



}


.primary-menu li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    display: block;
    padding: 5px;
    position: relative;
    transition: color 0.8s ease, transform 0.8s ease;
}

ul.sub-menu {
    list-style: none;
    color: #FF9800;
    background-color: #353434;
    border-radius: 10px;
    box-shadow: 0px 0px 8px 2px #ff98002b;
}

.primary-menu li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #fdb900;
    transition: width 0.8s ease, transform 0.8s ease;
    transform: translateX(-50%) rotate(242deg);
}

.primary-menu li a:hover {
    color: #fdb900;
    transform: scale(1.3);
	background-color:#2c2c2c;
	border-radius:5px;
	box-shadow:0px 0px 4px 3px #00000010;
}

.primary-menu li a:hover::before {
    width: 70%;
    left: 13px;
	top:33px;
    transform: translateX(0) rotate(5deg);
}

.primary-menu li.current-menu-item a {
    color: #fdb900;
    transform: scale(1.3);
	background-color:#2c2c2c;
	border-radius:5px;
	box-shadow:0px 0px 4px 3px #00000010;
}

.primary-menu li.current-menu-item a::before {
    width: 70%;
    left: 13px;
	top:33px;
    transform: translateX(0) rotate(5deg);
}


.hamburger-menu {
    display: none;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    display: flex;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}


.video-container {
	position: relative;
	width: 100%;
	height: 115vh;
}

video {
	width: 100%;
	height: 100hv;
	object-fit: cover;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 45%); 
	pointer-events: none; 
}



.intro {
    margin-top: -32%;
}

h1#h1 {
    font-size: 64px;
    z-index: 800;
    opacity: 0;
    transform: translateY(20px); 
    transition: opacity 0.8s ease, transform 0.8s ease;
}

h1#h1.show {
    opacity: 1;
    transform: translateY(0);
}

p#pint {
    z-index: 800;
    font-size: 28px;
    border-top: 1px solid #fdb900;
    opacity: 0;
    transform: translateY(20px); 
    transition: opacity 0.8s ease, transform 0.8s ease;
}

p#pint.show {
    opacity: 1;
    transform: translateY(0);
}

p#pint2 {
    z-index: 800;
    padding: 0px 20%;
    font-size: 16px;
    margin-top: -5px;
    opacity: 0;
    transform: translateY(20px); 
    transition: opacity 0.8s ease, transform 0.8s ease;
}

p#pint2.show {
    opacity: 1;
    transform: translateY(0);
}

#conect {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 130px;
    z-index: 800;
    margin-bottom: 50px;
}

a#ctc {
    padding: 10px 15px;
    font-size: 24px;
    width: 80px;
    background-color: #00000096;
    margin: 0px 10px;
    border-radius: 50%;
    box-shadow: 0px 0px 4px 3px #ffffff3d;
    color: #ffffff;
    border-bottom: 2px solid #fdb900;
    border-top: 2px solid #fdb900;
    display: flex;
    flex-direction: column;
    height: 80px;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-30px); 
    transition: opacity 0.8s ease, transform 0.8s ease;
}

a#ctc.show {
    opacity: 1;
    transform: translateX(0);
}

span#cs1 {
    font-size: 14px;
    color: #9a9a99;
}

#int-all {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 2% 10%;
    text-align: center;
    z-index: 800;
    color: #fff;
}






.social_warpp {
    width: 16%;
    padding: 0px;
    display: flex;
    flex-direction: column;
}

img#flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

#soc {
    display: flex;
    gap: 20px;
    justify-content: center;
}

#soc a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    position: relative;
	transition: color 0.6s ease, transform 0.6s ease;
}

#soc a:hover {
    color: #fdb900;
	transform:scale(1.3);

}


#soc a:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 5px;
	right:-10px;
    width: 1px;
    height: 70%;
    background-color: #ffffff42; 
}

		footer.custom-footer {
    margin-top: 50px;
}

.footerss {
    background: #2b2b2b;
    display: flex;
    padding: 2% 5% 1% 5%;
}

div#footer1 {
    display: flex;
	width:33.33%;
    padding: 0px 20px 0px 0px;
    flex-direction: column;
    align-items: flex-start;
}


img#logoo {
    width: 25%;
    padding: 0px;
}

	#conect1 i{
		font-size:21px;
		color:#FDB900;
		margin: 0px 7px 0px 0px;
	}

p#foot-note {
    color: #fff;
    font-size: 16px;
}


div#lng {
    display: flex;
    gap: 5px;
	margin-top:20px;
    color: #fff;
}


a#english-btn {
    font-size: 12px;
    color: #fff;
    padding-right: 5px;
}


a#farsi-btn {
    font-size: 12px;
    color: #fff;
    padding-right: 5px;
}


.divider{
	width: 1px;
   background-color: #ffffff30;
}

div#footer2 {

    width: 33.33%;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-content: center;
    align-items: center;
}

a#conect1 {
    font-size: 13px !important;
    font-weight: 400;
    color: #d3d3d3;
}

div#footer3 {
    display: flex;
    align-content: center;
    align-items: flex-end;
    width: 33.33%;
    justify-content: flex-end;
    font-weight: 600;
    gap: 50px;
    margin-top: 0px;
}
div#fotmen2 {
    display: flex;
    flex-direction: column;
}

a#custom-links1 {
    font-size: 16px;
    color: #d3d3d3;
}

.copyright {
    color: #838181;
    background-color: #000000d4;
    padding: 7px;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

a#prvc , #open-popup , #open-popup2{
    color: #fdb900;
}

div#stiky-call {
    width: 21%;
    display: grid;
    padding: 10px;
    margin-top: 20px;
    grid-template-columns: repeat(5, 1fr);
    justify-content: center;
    align-items: center;
    align-content: center;
    justify-items: center;
    position: fixed;
    bottom: 0;
    z-index: 1001;
}

a#kjj {
    background-color: #333;
    padding: 5px;
    width: 50px;
    font-size: 28px;
    color: #FDB900;
    text-align: center;
    box-shadow: 0px 0px 15px 3px #00000036;
    border-radius: 50%;
}


img#flagf {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0px 20px;
}


.container2 {
      background-image: url(https://aghil.com/wp-content/uploads/2024/12/bg3e.jpg);
    background-repeat: no-repeat;
    background-size: cover;
   margin-top: 14%;
    padding: 2% 5%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.informatin {
    width: 60%;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: inset 0 -4px 12px 0px #00000070;
	margin-bottom: -18.8%;
	z-index: 100;
}


.space {
    width: 40%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

img#self {
    width: 85%;
	z-index: 90;
	margin-bottom: -27px;
}

div#vid {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}

h2#infh {
    font-size: 88px;
    color: #000;
    z-index: 100;
}


div#infdiv {
    height: 2.8px;
    width: 21%;
    margin-left: 20px;
    background: #FDB900;
    border-radius: 50%;
}

.hv {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0px 0px 20px 23px;
}

img#logomatin {
    width: 38%;
}

    .event-excerpt {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.5em; 
        max-height: calc(1.5em * 3); 
    }

div#fut {
    display: flex;
    gap: 17px;
    font-size: 20px;
    justify-content: flex-start;
    padding: 20px 0px 50px 0px;
}


button#aboutt {
    background-color: #FDB900;
    border: 1px solid #FDB900;
	width: 100%;
    color: #000;
	    margin-top: 20px;
}
button#aboutt:hover{
	background-color: #000;
	color:#FDB900;
	border:none;
}

.divider11 {
    width: 1px;
    background-color: #00000014;
}



.container3 {
	border-top: 3px solid #FDB900;
    padding: 8% 5% 3%;
    background-image: url(https://aghil.com/wp-content/uploads/2024/12/bg3e.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.youtoub {
display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: center;
    justify-content: center;
    padding: 20px 0px 0px 0px;
    gap: 35px;
}

iframe#yif {
    width: 100%;
	height: 300px;
    border: 3px solid #ffffff;
    border-radius: 20px;
    box-shadow: 0px 0px 29px -6px #e50303;
}

.morinf {
    color: #fff;
    text-align: center;
    display: flex;
    padding: 20px 2%;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

h2#yh2 {
    font-size: 64px;
}

p#yp {
    padding: 0px 18%;
    margin-bottom: 5px;
}

span#pmor {
    margin-bottom: 25px;
}

button#ybut {
    background-color: #e50303;
    border: 1px solid #e50303;
    color: #fff;
	width:100%;
	margin-top:40px;
}




	
	.amp {
		
		font-style:italic;
		font-weight:normal;
		border: none;
	}

div#row1 {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.container4 {
    padding: 5% 0% 0% 0%;
}

h2#infh1 {
    font-size: 64px;
    color: #000;
}


div#infdiv1 {
    height: 2.8px;
    width: 14%;
    background: #FDB900;
    border-radius: 50%;
    margin: -5px 0px 15px 0px;
}


p#textinfi2 {
    color: #000;
    padding: 0px 36%;
    text-align: center;
}



div#btnss {
    padding: 110px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

button#btns1 {
    width: 290px;
    padding: 5px;
    font-size: 24px;
    border-radius: 15px;
    background-color: #181818;
    color: #FDB900;
    border: 1px solid #181818;
	transition:0.4s;
}
button#btns1:hover{
	background-color:#FDB900;
	border:none;
	color:#181818;
}

button#btns2 {
    width: 290px;
    padding: 5px;
    font-size: 24px;
    border-radius: 15px;
    background-color: #FDB900;
    color: #000;
    margin-top: 90px;
    border: 1px solid #FDB900;
}
button#btns2:hover{
	border:none;
	background-color:#000;
	color:#FDB900;
}

.mySlides {display: none;}
img {vertical-align: middle;}


.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}


.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}


.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}


.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

svg.e-font-icon-svg.e-eicon-share-arrow {
    display: none;
}

.container6 {
   
	padding-bottom: 100px;
	margin-bottom:-17%;
    padding: 0%;
    background-image: url(https://aghil.com/wp-content/uploads/2024/12/bg3e.jpg);
    background-repeat: no-repeat;
    background-size: cover;
	    display: flex;
    flex-direction: column;
    align-items: center;
}

.tizervid {
    padding: 0px 20%;
    display: flex;
    margin-top: 13%;
    flex-direction: column;
    align-content: center;
    align-items: center;
}


div#vitt {
    padding: 14px;
    background-color: #ffffff;
    border-radius: 15px;
    width: 100%;
	margin-top:-15%;
    z-index: 1;
    box-shadow: 0px 0px 39px -6px #fdb9009e;
}



.videocunt {
    position: relative;
    border-radius: 15px;
}

        video {
            width: 100%;
            height: 100%;
            display: block;
        }

video#video0 {
    border-radius: 15px;
}



        .play-pause-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            border: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            cursor: pointer;
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .play-pause-btn.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .videocunt:hover .play-pause-btn {
            opacity: 1;
            pointer-events: all;
        }


div#vitq {
    display: flex;
    padding: 20px;
}

div#textswq {
    width: 100%;
    padding-right: 10%;
}

div#futvit {
    display: flex;
    color: #FDB900;
    gap: 30px;
    font-size: 30px;
}


img#imghw {
    width: 15%;
}

span#lanffg11 {
    color: #000;
    margin-left: 6px;
    font-size:14px;
}


section.music-section {
   padding: 1% 4% 4% 4%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-content: center;
    justify-items: center;
	gap:20px;
}


.hed-mor {
	width: 100%;
    padding: 4% 5% 0px 5%;
    color: #fbfbfb;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

h2#infh15 {
    font-size: 64px;
    color: #ffffff;
}

a#mor {
    color: #000;
    background-color: #fdb900;
    font-size: 24px;
        padding: 3px 54px;
    border-radius: 10px;
	margin-bottom: 90px;
    margin-top: -20px;
    box-shadow: 0px 0px 5px 3px #000;
	transition:0.4s;
}

a#mor:hover{
	background-color: #000;
	color: #fdb900;
}

#mor i {
    color: #ffffff;
}

.music-box {
    color: #fff;
    background-color: #403f3f;
    padding: 5px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 2px #000;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.music-box img {
    border-radius: 15px;
}


.music-box p {
    color: #aaaaaa;
    text-align: center;
    padding: 1% 4%;
}

.music-box a {
    background-color: #181818;
    padding: 1px 16px;
    width: 100%;
    font-size: 18px;
    text-align: center;
    color: #fdb900;
    border-radius: 10px;
}


.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 20px;
     padding: 1% 4% 4% 4%;
    align-items: start;
    justify-items: center;
    justify-content: center;
}

.event-box {
    display: flex;
    gap: 10px;
    color: #1b1b1b;
    background-color: #fcfcfc;
    padding: 5px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 2px #000;
}

.padcastt {
    display: flex;
    padding: 1% 22%;
    color: #ffffff;
    align-content: center;
    align-items: center;
}

div#pdc-lft {
    width: 75%;
    font-size: 16px;
    padding-right: 4%;
}


#pdc-lft h2 {
    font-size: 24px;
    color: #fdb900;
}

div#pdc-rtl {
    width: 25%;
}

button#\31 ybut {
    background-color: #e50303;
    border: 1px solid #e50303;
    border-radius: 15px;
    font-size: 24px;
    color: #fff;
  
}

.acrd {
    padding: 1% 18%;
}
	
.acardcontainer {
    background-color: #403f3f;
    color: #fffbfb;
    border-radius: 20px;
    margin: 20px 0;
}

.question {
font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 60px 20px 10px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.active {
    background-color: #403f3f;
    color: #fdb900;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

.question::after {
  content: "\002B";
  font-size: 2.2rem;
	color:#fdb900;
  position: absolute;
  right: 20px;
  transition: 0.2s;
}

.question.active::after {
  transform: rotate(45deg);
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
	background-color: #403f3f;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    color: #dddddd;
}


.answer {
  padding: 0px 15px 20px 25px;
  line-height: 1.5rem;
}

.question.active + .answercont {
}



.event-thumbnail {
    width: 38%;
    margin-right: 15px;
}

.event-thumbnail img {
    border-radius: 15px;
}

.event-details{
	 width: 62%;
}

.event-details h3 {
    font-size: 19px;
	
}

a.btn-view {
    background-color: #181818;
    padding: 1px 20px;
    font-size: 18px;
    text-align: center;
    margin-right: 14px;
	width:20%;
	margin-top:15px;
    float: right;
    color: #fdb900;
    border-radius: 10px;
}

.countdown {
    font-size: 12px;
    color: #c7c5c5;
    display: flex;
 
    padding: 5px;
    border-radius: 10px;
    align-items: flex-end;
    gap: 5px;

    margin: -10px 3% 20px 0px;
    justify-content: start;
}

.countdown span {
    font-size: 18px;
    padding: 6px;
    color: #000;
    border-radius: 10px;
    border: 1px solid #fdb900;
}


span.seconds {
    background-color: #fdb900;
    border-color: #fdb900;
    color: #181818;
}
button#btn0 {
    margin: 27% 0px;
}

.instasoc {
    display: flex;
    justify-content: center;
	margin: 0px 15% 5%;
}
p#agh {
    padding-left: 35px;
    font-size: 24px;
    font-weight: 700;
}

img#blu {
    width: 25px;
}

.kioins {
    display: flex;
    padding: 14px;
    background-color: #ffffff;
    border-radius: 15px;
    width: 100%;
    z-index: 1;
    gap: 30px;
    box-shadow: 0px 0px 39px -6px #fdb9009e;
}
img#instapo {
    width: 75%;
    margin-top: -10px;
}

div#infad {
display: flex;
    gap: 70px;
	line-height: 1.4;
    font-size: 22px;
    font-weight: 600;
}
span#flwertq {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

div#bio {
    display: flex;
    flex-direction: column;
}
div#insta-lft {
    width: 20%;
}
div#insta-rtl {
    width: 40%;
}

#bio p {
    margin: 10px 0px 0px 0px;
}

div#instabtn {
    display: flex;
    align-items: flex-end;
    gap: 10px;
	width:40%;
}
#instabtn button {

	border-radius: 15px;
}

button#flw {
    background-color: #0084d7;
    border: 1px solid #0084d7;
    color: #fff;
	 width: 196px;
}

button#msg {
    background-color: #e9e8ea7a;
    border: 1px solid #e9e8ea7a;
    color: #000;
}

#bio a {
    color: #0084d7;
}

#custom-popup, #cstpp, #cstpp2 {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.5);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
  }

  #custom-popup > * {
      background: #181818;
      padding: 20px;
      border-radius: 10px;
      max-width: 70%;
	  margin: 10% 0px 0px 15%;
      max-height: 90%;
      overflow-y: auto;
      text-align: center;
  }
#cstpp > * {
      
      padding: 20px;
      border-radius: 10px;
      max-width: 70%;
	  margin: 2% 0px 0px 15%;
      max-height: 90%;
      overflow-y: auto;
      text-align: center;
  }
#cstpp2 > * {
      
      padding: 20px;
      border-radius: 10px;
      max-width: 70%;
	  margin: 2% 0px 0px 15%;
      max-height: 90%;
      overflow-y: auto;
      text-align: center;
  }



div#gallery-box-larg {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0px 0px 10px 4px #0000002b;
    width: 51%;
    height: 0%;
    z-index: 5;
}

div#gallery-box-larg:hover {
    z-index: 100;
}

div#gallery-box-mediums {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0px 0px 10px 4px #0000002b;
    width: 36%;
    height: 0%;
    z-index: 10;
}

div#gallery-box-mediums:hover {
    z-index: 100;
}
    
div#gallery-box-smals {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0px 0px 10px 4px #0000002b;
    width: 21%;
    height: 0%;
    z-index: 15;
}
    
div#gallery-box-smals:hover {
    z-index: 100;
}


span#captions-mediums {
    font-size: 18px;
    padding: 30px 10px;
    text-align: center;
    z-index: 10;
}

span#captions-smals {
    font-size: 14px;
    padding: 30px 10px;
    text-align: center;
    z-index: 15;
}

span#captions-larg {
    font-size: 22px;
    padding: 30px 10px;
    text-align: center;
    z-index: 5;
}


.graid-gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 5% 4% 5% 10%;
}

#gallery1{
    display: flex;
    flex-wrap: wrap;
    width: 33.3%;
    padding: 0px;
    justify-content: center;
    align-items: center;
    gap: 0px;
    margin: 0% -12% -14% -1%;
} 

#gallery2{
    display: flex;
    flex-wrap: wrap;
    width: 33.3%;
    padding: 0px;
    justify-content: center;
    align-items: center;
    gap: 0px;
    margin: 0% -12% -14% -1%;
}

#gallery3{
    display: flex;
    flex-wrap: wrap;
    width: 33.3%;
    padding: 0px;
    justify-content: center;
    align-items: center;
    gap: 0px;
    margin: 0% -12% -14% -1%;
}

#gallery4{
    display: flex;
    flex-wrap: wrap;
    width: 33.3%;
    padding: 0px;
    justify-content: center;
    align-items: center;
    gap: 0px;
    margin: 0% -12% -14% -1%;
} 

#gallery5{
    display: flex;
    
    width: 33.3%;
    padding: 0px;
    justify-content: center;
    align-items: center;
    gap: 0px;
    margin: 0% -16% -11% 12%;
} 

#gallery6 {
    display: flex;
   
    width: 33.3%;
    padding: 0px;
    justify-content: center;
    align-items: center;
    gap: 0px;
    margin: 0% -10% -10% 16%;
}


.pbx {
    transform: rotate(var(--angle)); 
    transition: transform 1.5s ease; 
}

.pbx:hover {
    --angle: 0deg; 
    transition: transform 1.5s ease;
    transform: rotate(0deg); 
    z-index: 50; 
}


.popupwe3 {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
}


.popupwe3-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
 
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
    max-width: 90%; 
    max-height: 100vh; 
    overflow: hidden;
    text-align: center;
}


#popup-image-we3 {
    max-width: 60%; 
    max-height: 100%; 
    display: block;
    margin: 0 auto;
}


.close-btn-we3 {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 62px;
  
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn-we3:hover {
    color: red; 
}













@media (min-width: 320px) and (max-width: 1024px) {
	
	body{
		overflow-x: hidden !important;
	}	
img#logoo {
    width: 70%;
    padding: 0px;
}
	
	
	button{
	width:290px;
	padding:5px;
	font-size:18px;
	border-radius:15px;
	transition:0.4s;
}
	
	
	img#flagf {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-bottom: 7px;
}
	
	
	.menu_warpp {
width: 25%;
        display: flex;
        margin-right: 27%;
        margin-left: -27%;
        z-index: 800;
}
	
	
	.social_warpp {
width: 39%;
        padding: 0px;
        display: flex;
        flex-direction: column;
}
	
	
	h2#infh15 {
    font-size: 42px;
    color: #ffffff;
}
	
	img#logo {
    width: 60%;
    padding: 0px;
}
	
	img#flag {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}
	
	#soc {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}
	
	a#kj {
    display: none;
}

	
	.logo_warpp {
padding: 0px;
        width: 26%;
        margin-left: 34%;
        margin-right: -34%;
        z-index: 500;
}
	.custom-header{
		background-color: #181818;
	}
	
	img#menuy {
    width: 50%;
}
	
    .hamburger-menu {
       display: flex;
        padding-left: 10px;
		justify-content: flex-start;
    }
	
	.menu-item.has-dropdown:hover > .sub-menu {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 5px;
    align-items: center;
    margin-left: -70px;
}

    .primary-menu {
        display: none;
    }

    .primary-menu1 {
        list-style: none;
        padding: 0px 0px 20px 0px;
        margin: 20px 0px 0px 0px;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
		flex-direction: column;
		gap: 10px;
    }
	

	
    .primary-menu1 li {
        position: relative;
       
    }

    .primary-menu1 li a {
        text-decoration: none;
        color: #fff;
        font-size: 22px;
        display: block;
        padding: 5px;
        position: relative;
        transition: color 0.8s ease, transform 0.8s ease;
    }

    .primary-menu1 li a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 1px;
        background-color: #fdb900;
        transition: width 0.8s ease, transform 0.8s ease;
        transform: translateX(-50%) rotate(242deg);
    }

    .primary-menu1 li a:hover {
        color: #fdb900;
        transform: scale(1.3);
        background-color: #2c2c2c;
        border-radius: 5px;
        box-shadow: 0px 0px 4px 3px #00000010;
    }

    .primary-menu1 li a:hover::before {
        width: 70%;
        left: 13px;
        top: 33px;
        transform: translateX(0) rotate(5deg);
    }

    .primary-menu1 li.current-menu-item a {
        color: #fdb900;
        transform: scale(1.3);
        background-color: #2c2c2c;
        border-radius: 5px;
        box-shadow: 0px 0px 4px 3px #00000010;
    }

    .primary-menu1 li.current-menu-item a::before {
        width: 70%;
        left: 13px;
        top: 33px;
        transform: translateX(0) rotate(5deg);
    }

    #menu-close-icon {
        color: #FDB900;
        font-size: 18px;
		border:1px solid #FDB900;
		border-radius:15px;
        
        padding: 5px;
    }


    .mobile-menu.active {
        z-index: 1000; 
		display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 15% 50px;
		 overflow-y: auto;
		
    }
	
	
	
		footer.custom-footer {
    margin-top: 30px;
}

	
	.footerss {
    background: #2b2b2b;
    display: flex;
    padding: 7% 5% 1% 5%;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
	gap:50px;
}
	
	div#footer1 {
    display: flex;
    flex-direction: column;
    align-items: center;
	padding:0px;
}
	
	a#logfff1{
		text-align:center;
	}
	
	p#foot-note {
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 0px 40px 30px;
}
	
	
	a#english-btn {
    font-size: 14px;
    color: #fff;
    padding-right: 5px;
		text-align:center;
        font-size: 14px;   
        padding-right: 5px;
        display: flex;
        text-align: center;
        flex-direction: column;
        align-content: center;
        align-items: center;
    }
	
		a#farsi-btn {
    font-size: 14px;
    color: #fff;
    padding-right: 5px;
		text-align:center;
        font-size: 14px;   
        padding-right: 5px;
        display: flex;
        text-align: center;
        flex-direction: column;
        align-content: center;
        align-items: center;
    }

	
	#fut i::before {
    font-size: 27px;
    margin-right: 5px;
		color:#FDB900;
}
	
	
	div#footer2 {
 		width: 100%;
        padding-left: 0px;
        display: flex;
        gap: 15px;
        justify-content: center;
        align-content: center;
        align-items: center;
}
	
	
	
	div#footer3 {
        padding: 10px;
        display: flex;
        align-content: center;
        width: 100%;
        justify-content: center;
        font-weight: 600;
        gap: 10px;
        margin-top: -10px;
        flex-direction: column;
        align-items: center;
        flex-direction: row;

}
	div#fotmen2 {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-content: center;
    
}
	.fotmen1{
		align-items: start;
	
	}
	.fotmen2{
		margin-left:30px;
	}
	
	
	
	#conect1 i{
		font-size:16px;
		color:#FDB900;
		margin: 0px 5px 0px 0px;
	}
	
	
	.copyright {
    color: #838181;
    background-color: #000000d4;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    padding: 20px 10px 70px 10px;
}
	
	p#copy-right {
    text-align: center;
    font-size: 12px;
	}
	
	div#stiky-call {
    width: 90%;
    display: grid;
    padding: 10px;
    margin-top: 20px;
    grid-template-columns: repeat(5, 1fr);
    justify-content: center;
    align-items: center;
    align-content: center;
    justify-items: center;
    position: fixed;
    bottom: 0;
    z-index: 1000;
}
	.menu-close {
    margin: -5% 0px 5% 0px;
}
	
	
	h1#h1 {
    font-size: 28px;
    z-index: 800;
}
	
p#pint {
    z-index: 800;
    font-size: 20px;
    border-top: 1px solid #fdb900;
}
	
.intro {
    margin-top: -250%;
    background-color: #181818;
}	
#conect {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 5px;
    z-index: 800;
    margin-bottom: -5px;
	gap: 4px;
}	
	
	p#pint2 {
    z-index: 800;
    padding: 0px 0%;
    font-size: 13px;
    margin-top: -5px;
}
a#ctc {
padding: 10px 15px;
        font-size: 24px;
        background-color: #00000096;
        margin: 0px 10px;
        border-radius: 50%;
        box-shadow: 0px 0px 4px 3px #ffffff3d;
        color: #ffffff;
        border-bottom: 2px solid #fdb900;
        border-top: 2px solid #fdb900;
        display: flex;
        width: 70px;
        height: 70px;
        flex-direction: column;
	justify-content: center;
}	
.container2 {
    background-color: #181818;
    padding: 2% 5%;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: center;
	margin-top: -15px;
}	
	.informatin {
    width: 100%;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 25px;
    box-shadow: inset 0 -4px 12px 0px #00000070;
    margin-bottom: -9.8%;
    z-index: 100;
}
.space {
    width: 75%;
    display: flex;
    justify-content: center;
}	
	
div#vid {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    align-items: center;
}	
	div#vid {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    align-items: center;
}
	
h2#infh {
    font-size: 50px;
    color: #000;
    z-index: 100;
}
	video#logomatin {
    width: 100%;
    height: 73px;
    margin: 10px 0px 40px;
    z-index: 5;
}
p#textinfi {
    text-align: justify;
    font-size: 14px;
    padding: 5px 10px;
}
	div#fut {
    display: flex;
    gap: 30px;
    margin-bottom: -20px;
    text-align: center;
    font-size: 20px;
    justify-content: space-evenly;
    padding: 20px 0px 50px 0px;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
}
	
	.divider11 {
    display: none;
}
	
	.irm{
		width:320px !important;
		height:200px !important;
		border-radius: 20px;
	}
	
.youtoub {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
    align-items: center;
    justify-content: center;
    padding: 20px 0px 0px 0px;
    gap: 15px;
}	
h2#yh2 {
    font-size: 32px;
}
	p#yp {
    padding: 0px 0%;
    margin-bottom: 5px;
    font-size: 14px;
}
	button#ybut {
    background-color: #e50303;
    border: 1px solid #e50303;
    border-radius: 15px;
    font-size: 18px;
    color: #fff;
    margin: 30px 0px 0px;
}
	span#pmor {
    margin-bottom: 25px;
    font-size: 24px;
    margin-top: 15px;
}
	
h2#infh1 {
    font-size: 42px;
    color: #000;
}
	p#textinfi2 {
    color: #000;
    padding: 0px 17%;
    font-size: 14px;
    text-align: center;
}
	
button#btns2 {
 
padding: 5px;
        font-size: 18px;
        border-radius: 15px;
        background-color: #FDB900;
        color: #000;
        margin-top: 2%;
        border: 1px solid #FDB900;
}	
	button#btns1{font-size:18px;}	
	.container6 {
    margin-top: 15%;
    padding-bottom: 100px;
    margin-bottom: -17%;
    padding: 0%;
    background-color: #181818;
}
	
	.tizervid {
    padding: 0px 7%;
    display: flex;
    margin-top: 18%;
    flex-direction: column;
    align-content: center;
    align-items: center;
}
	
	div#vitt {
    padding: 14px;
    background-color: #ffffff;
    border-radius: 15px;
    width: 100%;
    z-index: 1;
		
    box-shadow: 0px 0px 39px -6px #fdb9009e;
}
	div#vitq {
    display: flex;
    padding: 20px 5px;
}
	div#row1 {
    margin-bottom: -120px;
}
	h2#infh12 {
    font-size: 24px;
	margin: 30px -15px 5px 0px;
}
	p#textinfi23 {
         font-size: 13px;
        margin-right: -15px;
}
	div#futvit {
		display: flex;
        color: #FDB900;
        row-gap: 5px;
        column-gap: 20px;
        margin-left: -10px;
        font-size: 20px;
        justify-content: flex-start;
        flex-wrap: wrap;
        margin-right: -30px;
        margin-bottom: -20px;
}
	span#lanffg11 {
    color: #000;
    margin-left: 6px;
    font-size: 10px;
}
	
	img#imghw {
    width: 79px;
    height: 80px;
    margin-top: 17%;
}
	
	.instasoc {
    display: flex;
    justify-content: center;
    padding: 3% 6% 15%;
}
	div#textswq {
    width: 100%;
    margin-top: -10px;
    padding-right: 10%;
}

	.kioins {
    display: flex;
    padding: 14px;
    background-color: #ffffff;
    border-radius: 15px;
    width: 70%;
    z-index: 1;
    gap: 30px;
    box-shadow: 0px 0px 39px -6px #fdb9009e;
    flex-direction: column;
}
	div#insta-lft {
    width: 28%;
}
	p#agh {
    padding-left: 0;
    font-size: 14px;
    font-weight: 700;
}
	img#blu {
    width: 17px;
}
	img#instapo {
    margin-top: -10px;
}
	div#insta-rtl {
    width: 100%;
}
	div#infad {
    display: flex;
    gap: 20px;
    line-height: 1.2;
    font-size: 16px;
    font-weight: 600;
    margin: -26% 0px 7%;
    justify-content: flex-end;
}
	
	div#bio {
    display: flex;
    padding-left: 10px;
    flex-direction: column;
}
div#instabtn {
    display: flex;
    align-items: flex-end;
    gap: 10px;
	width:100%;
    justify-content: center;
}	
 #instabtn a {
    width: 100%;
}
	button#flw {
    background-color: #0084d7;
    border: 1px solid #0084d7;
    color: #fff;
}
	button#msg {
    background-color: #e9e8ea7a;
    border: 1px solid #e9e8ea7a;
    color: #000;

}
	
	.hed-mor {
    padding: 13% 5% 5px 5%;
    color: #6b6b6b;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: space-between;
}
	
h2#hed {
    font-size: 20px;
}
	a#mor {
color: #111111;
        background-color: #fdb900;
        font-size: 18px;
        padding: 5px;
        width: 90%;
        text-align: center;
		margin-top:2%;
        margin-bottom: 30px;
        border-radius: 15px;
        box-shadow: 0px 0px 5px 3px #000;
}
	section.music-section {
    padding: 1% 4% 4% 4%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    justify-items: center;
    gap: 20px;
}
	button#\31 ybut {
    background-color: #e50303;
    border: 1px solid #e50303;
    border-radius: 15px;
    font-size: 18px;
    width: 98%;
    color: #fff;
}
	
	.music-box h3 {
    text-align: center;
    font-size: 20px;
}
	.music-box p {
    color: #aaaaaa;
    text-align: center;
    font-size: 14px;
    padding: 1% 2%;
}
	.padcastt {
    display: flex;
    padding: 1% 5%;
    color: #ffffff;
    align-content: center;
    align-items: center;
	flex-direction: column;
}
div#pdc-lft {
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding-right: 4%;
}
#pdc-lft h2 {
    font-size: 24px;
    padding: 0px 3%;
    color: #fdb900;
}
	#pdc-lft p {
    padding: 0px 6%;
}
	
div#pdc-rtl {
    width: 100%;
    text-align: center;
    padding: 20px 0px;
}	
.acrd {
    padding: 1% 4%;
}
	.question {
    font-size: 16px;
    line-height: 1.9;
    font-weight: 600;
    padding: 20px 60px 20px 10px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(1, 2fr);
    gap: 20px;
    padding: 1% 4% 4% 4%;
    align-items: start;
    justify-items: center;
    justify-content: center;
}	
	
	.event-box {
    display: flex;
    gap: 10px;
    color: #1b1b1b;
    background-color: #fcfcfc;
    padding: 5px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 2px #000;
    flex-direction: column;
    align-content: center;
    align-items: center;
}
	.event-thumbnail {
        width: 100%;
        display: flex;
        margin: 0px;
        flex-direction: column;
}
	.event-details {
    text-align: center;
}
	.event-details h3 {
    font-size: 18px;
}
	.event-details p {
    font-size: 14px;
    padding: 0px 4% 5%;
}
	.countdown {
    font-size: 12px;
    color: #c7c5c5;
    display: flex;
    padding: 5px;
    border-radius: 10px;
    align-items: flex-end;
    gap: 5px;
    margin: -10px 3% 20px 0px;
    justify-content: center;
}
	a.btn-view {
        background-color: #181818;
        font-size: 18px;
        width: 25%;
        margin-top: 15px;
        color: #fdb900;
        border-radius: 10px;
}
	
	.event-details{
		width: 100%;
		text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
	}	

	

div#gallery-box-larg {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0px 0px 10px 4px #0000002b;
    width: 100%;
    height: 0%;
    z-index: 5;
}

div#gallery-box-larg:hover {
    z-index: 100;
}

div#gallery-box-mediums {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0px 0px 10px 4px #0000002b;
    width: 66%;
    height: 0%;
    z-index: 10;
}

div#gallery-box-mediums:hover {
    z-index: 100;
}
    
div#gallery-box-smals {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0px 0px 10px 4px #0000002b;
    width: 41%;
    height: 0%;
    z-index: 15;
}
    
div#gallery-box-smals:hover {
    z-index: 100;
}


span#captions-mediums {
    font-size: 16px;
    padding: 30px 10px;
    text-align: center;
    z-index: 10;
}

span#captions-smals {
    font-size: 12px;
    padding: 30px 10px;
    text-align: center;
    z-index: 15;
}

span#captions-larg {
    font-size: 18px;
    padding: 30px 10px;
    text-align: center;
    z-index: 5;
}


.graid-gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
	width:95%;
    align-items: center;
    padding: 5% 15% 5% 15%;
}

#gallery1{
    display: flex;
    flex-wrap: wrap;
    width: 60%;
    padding: 0px;
	max-height: 700px;
    justify-content: center;
    align-items: center;
    gap: 0px;
    margin: 22% -10% -39% -1%;
} 

#gallery2{
    display: flex;
    flex-wrap: wrap;
    width: 60%;
    padding: 0px;
	max-height: 700px;
    justify-content: center;
    align-items: center;
    gap: 0px;
    margin: 0% -12% -14% -1%;
}

#gallery3{
    display: flex;
    flex-wrap: wrap;
    width: 60%;
    padding: 0px;
	max-height: 700px;
    justify-content: center;
    align-items: center;
    gap: 0px;
    margin: 0% -12% -14% -1%;
}

#gallery4{
    display: flex;
    flex-wrap: wrap;
    width: 60%;
    padding: 0px;
	max-height: 700px;
    justify-content: center;
    align-items: center;
    gap: 0px;
    margin: -36% -12% -14% -1%;
} 

#gallery5{
    display: flex;
    
    width: 60%;
    padding: 0px;
    justify-content: center;
    align-items: center;
    gap: 0px;
    margin: 0% -16% -11% 12%;
} 

#gallery6 {
    display: flex;
   
    width: 60%;
    padding: 0px;
    justify-content: center;
    align-items: center;
    gap: 0px;
    margin: 0% -10% -10% 16%;
}	
	
	div#btnss {
    padding: 0px 10px;
    display: flex;
	margin-top: 70px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
}
	
	body{
overflow-x:hidden;	
}

	#bio a {
    color: #0084d7;
    font-size: 14px;
    font-weight: 400;
}
	
#int-all {
    display: flex;
    margin-top: 0px;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 100% 10%;
    text-align: center;
    z-index: 800;
    color: #fff;
	
}

#cstpp2 , #cstpp{
      padding: 2%
}
	
#cstpp2 > * {
      
    max-width: 100%;
    margin: 0% ;
  }
	#cstpp > * {
      
    max-width: 100%;
    margin: 0% ;
  }
	
	
