/*
Theme Name:         RitmiQ
Theme URI:          https://ritmiq.ir
Author:             Amin Kazemi™ Co
Author URI:         https://limooweb.com/
Description:        ریتمیک
Version:            1.0
Text Domain:        RitmiQ
*/
/* [ Fonts ] */
@font-face{font-family:limooweb;src:url(fonts/limooweb.woff2) format('woff2-variations'),
    url(fonts/limooweb.woff) format('woff-variations'),
    url(fonts/limooweb.ttf) format('truetype-variations');
    font-weight:100 1000;
    font-display:swap
}
.toman{-moz-font-feature-settings:"ss01";-webkit-font-feature-settings:"ss01";font-feature-settings:"ss01"}
.fa-num{-moz-font-feature-settings:"ss02"!important;-webkit-font-feature-settings:"ss02"!important;font-feature-settings:"ss02"!important}
.mono-space{-moz-font-feature-settings:"ss03";-webkit-font-feature-settings:"ss03";font-feature-settings:"ss03"}
.vertical-align{-moz-font-feature-settings:"ss04";-webkit-font-feature-settings:"ss04";font-feature-settings:"ss04"}

/* [ THEME ] */
body{
	font:300 13px limooweb;
	text-align:center;
	direction:rtl;
	cursor:default;
    background: #fff;
    color: #3F3D42;
    text-decoration: none;
    --color-primary: #3A3B8E;
    --color-secoundary: #1DBBB4;
    --color-text: #3F3D42;
    --color-text-blue: #0C2066;
    --color-light: #ececec;
    --color-yellow: #FCCD35;
}
h1{
    font-size: xx-large;
    font-weight: bold;
}
h2{
    font-size: x-large;
    font-weight: bold;
}
h3{
    font-size: large;
    font-weight: bold;
}
h4{
    font-size: medium;
    font-weight: bold;
}
h5{
    font-size: larger;
    font-weight: bold;
}
h6{
    font-size: small;
    font-weight: bold;
}
a{
    color: var(--color-text);
    transition: 0.1s;
    text-decoration: none;
}
a:hover{
    color: var(--color-secoundary);
}
b{
    font-weight: 500;
}
stronge{
    font-weight: 700;
}
section{
    margin-bottom: 50px;
}
.d1000{
	width:1500px;
	margin:0 auto;
}
.d100{
	min-width:1200px;
}
.d80{
    width: 90%;
    margin: 0 auto;
	min-width:1200px;
    border-radius: 20px;
}
.flex{
    display: flex;
    gap:10px;
    align-items: center;
}
.btn{
    padding: 10px 25px 13px;
    border-radius: 25px;
    background: var(--color-primary);
    color: #fff;
    font-size: medium;
    font-weight: 400;
    display: flex;
    gap: 10px;
    align-items: center;
    transition: 0.3s;
}
.btn.yellow{
    background: var(--color-yellow);
    color: var(--color-text);
}
.btn.green{
    background: var(--color-secoundary);
}
.btn.gray{
    background: var(--color-light);
    color: var(--color-text);
}
.btn:hover{
    background: var(--color-text);
    color: #fff;
    box-shadow: 0px 0px 0px 2.5px #fff, 0px 0px 0px 5px var(--color-light), 0px 0px 0px 10px white, 0px 0px 0px 10.5px var(--color-light);
}
.btn:hover svg{
    filter: brightness(0) invert(1);
    transition: 0.3s;
}
@media (max-width:1400px){
	.d100, .d80{
		width:100%;
		min-width:100%;
        border-radius: 0;
	}
	.d1000{
		width:98%;
	}
}
.mb75{
    margin-bottom: 75px;
}
.sp-1{
    height: 50px;
}
.sp-2{
    height: 50px;
}
.sp-3{
    height: 75px;
}
.sp-4{
    height: 100px;
}
.navbar{
}
.box{
    border-radius: 50px;
    padding: 40px;
    text-align: right;
}
.box.shadow{
    box-shadow: 0 0 20px #eee;
}
.bg-primary{
    background: var(--color-primary);
    color: #fff;
}
.bg-secoundary{
    background: var(--color-secoundary);
    color: #fff;
}
.bg-light{
    background: var(--color-light);
}
.typing {
  white-space: nowrap;  
  overflow: hidden;
  border-right: 3px solid #000;
  width: 0;
  animation: typing 1s steps(28) forwards, blink 0.5s step-end infinite;
}
@keyframes typing {
  from { width: 0; }
  to { width: 50ch; }
}

@keyframes blink {
  50% { border-color: transparent; }
}
.menu{
    gap: 10px;
    margin-right: auto;
    position: relative;
    font-size: 15px;
    font-weight: 500;
}
.menu > li{
    padding:10px;
    position: relative;
    list-style: none;
}

.menu li a {
    text-decoration: none;
    padding: 5px 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}
.arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
    margin-right: 10px;
}

.submenu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--color-primary);
    list-style: none;
    min-width: 150px;
    z-index: 10;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
    color: #fff;
    width: 100%;
    padding: 10px;
    border-radius: 15px;
}
.submenu li a {
    padding: 8px 12px;
    white-space: nowrap;
    color: #fff;
}

.submenu li a:hover{
    color:  var(--color-secoundary);
}

.menu li:hover > .submenu {
    max-height: 500px;
    opacity: 1;
}
@media (min-width: 769px) {
    .menu li:hover > a .arrow {
        transform: rotate(-90deg);
    }
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 5;
}
main{
    margin:  20px 0;
}
.headerMain{
    padding: 50px 0;
    justify-content: space-between;
}
.hero {
    min-height: 500px;
    text-align: right;
    position: relative;
}
.hero > main{
    padding-top: 5%;
}
.hero h1{
    color: var(--color-secoundary);
    line-height: 0;
}
.hero h2 {
    font-size: large;
    margin: 0;
    margin-bottom: 15px;
    font-weight: 400;
}
.hero strong{
    font-weight: 800;
    font-size: xxx-large;
    color:  var(--color-primary);
}
.hero img.singer{
    position: absolute;
    left: 0;
    z-index: 5;
    bottom: 0;
}
.hero img.stars{
    position: absolute;
    left: 10%;
    z-index: 3;
    bottom: 19%;
    height: auto;
    animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(10px, -5px); }
  50%  { transform: translate(-10px, 5px); }
  75%  { transform: translate(5px, -10px); }
  100% { transform: translate(0, 0); }
}
.bigTitle {
    background: #fff;
    color: var(--color-text);
    border-radius: 50px;
    display: inline-block;
    padding: 10px 30px 13px;
    margin: 0;
    margin-bottom: 30px;
}
.bigTitle.yellow {
    color: var(--color-text);
    background:  var(--color-yellow);
}
.bigTitle.green {
    color: #fff;
    background:  var(--color-secoundary);
}
.bigTitle.primary {
    color: #fff;
    background:  var(--color-primary);
}
.bigTitle.light {
    background:  var(--color-light);
}
.whatBox {
    width: 90%;
    justify-self: center;
}
.whatBox > div{
    text-align: center;
    border-left: 2px solid #00000033;
    padding: 30px;
}
.whatBox > div h3{
    color: var(--color-yellow);
    font-size: x-large;
    margin: 10px;
}
.whatBox > div p{
    font-size: medium;
}
.whatBox > div:last-child{
    border-left: none;
}
.feature{
    justify-content: space-between;
}
.feature > div{
    text-align: right;
    width: 50%;
    font-size: 16px;
    transition: 0.3s;
}
.feature > div.issinger{
    box-shadow: 0 0 20px #eee;
}
.feature > div.ismedia:hover{
    box-shadow: 0 0 20px #eee;
}
.feature > div ul{
    font-weight: 500;
}
.feature > div ul li{
    line-height: 2;
}
.feature > div.issinger ul li::marker {
  color: var(--color-yellow);
}
.feature > div.ismedia ul li::marker {
  color: var(--color-secoundary);
}
.feature > div a.register {
    width: max-content;
    justify-self: left;
    padding: 10px 20px;
    text-decoration: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
    opacity: 0.5;
}
.feature > div:hover a.register {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity:1;
}
.box.media p {
    font-weight: 400;
    font-size: medium;
    line-height: 2;
    width: 40%;
    text-align: justify;
}
.box.media .media-main{
    justify-content: space-around;
    align-items: flex-start;
    gap:50px;
}
.box.media .media-list{
    flex-wrap: wrap;
    width: 60%;
}
.box.media .media-list a {
    background: #fff;
    width: 27%;
    padding: 15px 20px 18px;
    border-radius: 27px;
    line-height: 1.4;
    display: flex;
    gap: 10px;
    font-weight: 500;
    font-size: large;
}
.box.media .media-list a:hover{
    background: var(--color-secoundary);
    color: #fff;
    box-shadow: 0px 0px 0px 2.5px #fff, 0px 0px 0px 5px var(--color-light), 0px 0px 0px 8px white;
}
.box.media .media-list a.primary{
    background: var(--color-primary);
    color: #fff;
}
.box.media .media-list a.primary:hover{
    background: var(--color-secoundary);
}
.box.media .media-list a:hover svg{
    filter: brightness(0) invert(1);
}
.social{
    display: flex;
    align-items: center;
}
.social .call{
    margin-left: auto;
    display: flex;
    align-items: center;
    font-size: 36px;
    font-weight: 700;
    gap:20px;
}
.social .socialL {
    margin-right: auto;
    display: flex;
    gap: 5px;
}
.social .socialL a {
    background: #fff;
    border-radius: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text);
    font-weight: 500;
    font-size: 15px;
    padding: 14px;
}
.social .socialL a:last-child {
    background:var(--color-yellow);
}
.consult{
    display: flex;
    align-items: center;
    border-radius: 40px;
    padding: 30px 60px;
    background: rgb(58 59 142);
    background: linear-gradient(270deg, rgb(29 187 180) 0%, rgb(58 59 142) 100%);
    background-size: 200% 200%;
    color: #fff;
        -webkit-animation: Animation 5s ease infinite;
    -moz-animation: Animation 5s ease infinite;
    animation: Animation 5s ease infinite;
}

@-webkit-keyframes Animation {
    0%{background-position:10% 0%}
    50%{background-position:91% 100%}
    100%{background-position:10% 0%}
}
@-moz-keyframes Animation {
    0%{background-position:10% 0%}
    50%{background-position:91% 100%}
    100%{background-position:10% 0%}
}
@keyframes Animation { 
    0%{background-position:10% 0%}
    50%{background-position:91% 100%}
    100%{background-position:10% 0%}
}
.consultR{
    width: 40%;
    text-align: right;
}
.consultR h2{
    font-weight: 600;
    display: block;
    font-size: 40px;
}
.consultR p{
    font-size: 18px;
}
.consult .social{
    flex-wrap: wrap;
    justify-content: center;
}
.consult .social .call{
    width: 100%;
    justify-content: center;
}
.consult .social .socialL {
    margin-right: unset;
}
.consultL{
    margin-right: auto;
    margin-bottom: -50px;
}
.faq{
    align-items: flex-start;
    gap:30px;
}
.faq fiqure{
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    line-height: 0;
}
.faq fiqure img{
    width: 100%;
    height: auto;
}
.faq fiqure b {
    position: absolute;
    left: 20%;
    right: 20%;
    bottom: 10%;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    z-index: 2;
    font-size: large;
    line-height: 2;
}
.faqs{
    margin-right: auto;
    width: 70%;
    text-align: right;
}
.faq-item{
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--color-light);
}
.faq-item.active {
    background: var(--color-primary);
    color: #fff;
    padding: 0 0 20px 0;
    border-radius: 10px 10px 40px 40px;
}

.faq-question {
  padding: 15px 40px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  font-size: 16px;
}
.faq-item.active .faq-question {
    color: var(--color-secoundary);
}
.faq-question::after {
    content: "+";
    position: absolute;
    left: 20px;
    font-size: xx-large;
    transition: transform 0.3s ease;
    font-weight: 200;
    line-height: 30px;
    color: var(--color-text-blue);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    color: var(--color-yellow);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
  padding: 0 40px;
  line-height: 1.8;
  color: #555;
}

.faq-item.active .faq-answer {
    max-height: max-content;
    color: #fff;
}
body > footer{
    margin-top: 100px;
    text-align: center;
}
body > footer .main{
    width: 50%;
    margin: 20px auto;
}
body > footer .main p {
    font-size: medium;
    text-align: justify;
    font-weight: 400;
}
body > footer .main .cert{
    justify-content: center;
}
body > footer .main hr{
    border: 1px solid #f4f4f4;
}
body > footer .main span{
    margin: 20px auto;
    display: block;
}
body > footer .footerLins{
    transform: rotate(180deg);
}
body > footer links{
    margin: 20px auto;
    justify-content: center;
    font-weight: 500;
    display: flex;
}
body > footer links a{
}
body > footer links a::after {
    content: "|";
    padding: 0 14px;
    color: var(--color-light);
}
body > footer links a:last-child::after {
    content: "";
}
.single{
    font-size: large;
}
.single p{
    text-align: justify;
}
.single .postImg{
    text-align: center;
}
.single .postImg img{
    border-radius: 20px;
    max-width: 100%;
    height: auto;
}
.single .content img{
    border-radius: 20px;
    display: block;
    margin: 10px auto;
    height: auto;
    max-width: 100%;
}