@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Quicksand:wght@300..700&display=swap');

/*.quicksand-<uniquifier> {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


*/

body {
  font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	line-height: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Quicksand", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	text-align: left;
}

.mc-title a, u-url{
	font-family: "Quicksand", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	text-align: left;
	color:#5850a2;
}

.gc-headerItem-comment-number a{
	font-family: "Quicksand", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	text-align: left;
	color:#5850a2;
}
    

a:visited{
    color:#5850a2;
}

li a {
	font-weight: 500;

}

.mc-h2 {
	font-size: 42px;
	font-weight: 400;
}

.mc-h5 h5 {
	font-size: 28px;
	font-weight: 400;
}

#header a {
	font-family: "Quicksand", sans-serif;
	font-size: 20px;
	font-weight: 300px;
	color:#5850a2;
}

#header .logo img {
	height: 80px;

}


.u-url:hover {
	text-decoration: none;


}

.mc1-title {
	background: -webkit-linear-gradient(45deg, #553c9a, #ee4b2b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-family: "Cormorant Garamond", serif;
	font-optical-sizing: auto;
}

.mc-title{
color:#5850a2;   
text-align: center;
    
}

blockquote {
	border-left: 0.1rem solid #ff0a0a;
	background-color: #fbfbfb;
	padding: 40px;
	box-shadow: 5px 5px 3px 1px #ccc;

}

.sharing-btns {
	border: 1px solid #999;
	padding: 25px;
	border-radius: 3px;
	background: #fdfdfd;
	margin-top: 40px;
}

/* Make the <ul> display items horizontally */
.button-list {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	/* Add space between buttons */
}

.button-list {
	list-style: none;
	padding: 0;
	display: flex;
	gap: 10px; /* spacing between buttons */
}

.button-item {
	flex: 1;
	min-width: 100px;
}

.button-item a {
	display: block;
	padding: 10px 20px;
	text-align: center;
	border-radius: 3px;
	border: 1px solid #999;
	color: #5850a2;
	font-weight: 400;
	font-size: 16px;
	text-decoration: none;
	transition: background-color 0.3s, color 0.3s;
	cursor: pointer;
}

.button-item a:hover {
	background-color: #5850a2;
	color: #fff;
}

.bg-gray{
  background-color: #5850a2;
  color: #fff;
    
}


  .hosting-quiz-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .quiz-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            padding: 40px;
            margin-bottom: 30px;
        }
        
        .quiz-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .quiz-header h1 {
            font-size: 2.5em;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .quiz-header p {
            font-size: 1.2em;
            color: #7f8c8d;
        }
        
        .quiz-question {
            margin-bottom: 30px;
        }
        
        .quiz-question h3 {
            font-size: 1.3em;
            margin-bottom: 20px;
            color: #2c3e50;
        }
        
        .quiz-options {
            display: grid;
            gap: 15px;
        }
        
        .quiz-option {
            position: relative;
        }
        
        .quiz-option input[type="radio"] {
            position: absolute;
            opacity: 0;
        }
        
        .quiz-option label {
            display: block;
            padding: 15px 20px;
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .quiz-option label:hover {
            background: #e3f2fd;
            border-color: #2196f3;
        }
        
        .quiz-option input[type="radio"]:checked + label {
            background: #2196f3;
            border-color: #2196f3;
            color: white;
        }
        
        .quiz-btn {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.1em;
            border-radius: 25px;
            cursor: pointer;
            transition: transform 0.2s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .quiz-btn:hover {
            transform: translateY(-2px);
        }
        
        .quiz-results {
            margin-top: 30px;
        }
        
        .result-card {
            background: #f8f9fa;
            border-left: 4px solid #28a745;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 0 10px 10px 0;
        }
        
        .result-card h4 {
            color: #28a745;
            margin-bottom: 10px;
        }
        
        .result-card .price {
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .cta-button {
            display: inline-block;
            background: #28a745;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            margin-top: 10px;
            transition: background 0.3s ease;
        }
        
        .cta-button:hover {
            background: #218838;
        }
        
        .quiz-summary {
            background: #e3f2fd;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        
        .quiz-summary h3 {
            color: #1976d2;
            margin-bottom: 15px;
        }
        
.bg-main-color{background:#5851A3;}

.text-white{color:#fff !important;}

.main-heading{font-size:2rem !important;}

.heading-title{margin-bottom: 50px; padding-bottom: 50px;}

.topics-arrow-down i{font-size: 50px; background: #5851A3;color: #fff;padding: 10px;border-radius: 300px;}

.platform-logos{padding:20px !important; text-align:center;}

.platform-logos img{max-height:250px;}

.list-topic{padding: 20px; margin: 20px 0; border: 1px solid #ececec; text-align: center; border-radius: 10px; box-shadow: 1px 3px 2px 1px #e6e6e6;}

@media screen and (min-width: 980px) { .bricklayer-column-sizer { width: 33.333%; } }

.platform-names{background: #5851A3; border-top: 1px solid #dedede; border-radius: 0px 0px 10px 10px;}
.platform-names:hover{background: #000;}

.platform-names .mc-title a{color:#fff;}

.platform-items{border: 1px solid #dedede !important; box-shadow: none !important; border-radius: 10px !important;}

.mr-20{margin-right: 20px;}

body.header-fixed.header-animated #header.scrolled .logo img {height: 50px;}

.deal-section{padding: 20px; background: aliceblue; border-radius: 20px; margin: 20px 0px;}


.deal-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 20px 0px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 1px 1px 10px 1px;
  transition: transform 0.2s ease;


}

.deal-card:hover {
  transform: translateY(-3px);
}

.deal-card.expired {
  opacity: 0.6;
}

.deal-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.deal-left,
.deal-right {
  flex: 1;
  min-width: 200px;
}

.deal-pricing {
  text-align: left;
}

.deal-current {
  display: block;
  font-size: 1.4rem;
  color: #28a745;
  font-weight: bold;
  line-height: 1.1;
}

.deal-old {
  display: block;
  font-size: 1rem;
  color: #888;
}

.deal-timer {
  text-align: right;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.3;
}

.deal-countdown {
  display: block;
  font-weight: bold;
  color: #d9534f;
  font-size: 1.1rem;
}

.deal-button {
  margin-top: 15px;
  text-align: center;
}

.deal-button .button {
  display: inline-table;
  width: 100%;
  padding: 10px 0;
  border: none;
  border-radius: 6px;
  background: #28a745;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.deal-button .button:hover {
  background: #218838;
}
