/* Site fonts */

@font-face {
  font-family: 'source_sans_probold';
  src: url("../fonts/sourcesanspro-bold-webfont.bb0c74e56ecb.woff2") format('woff2'),
       url("../fonts/sourcesanspro-bold-webfont.1ea0e032b410.woff") format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'source_sans_proregular';
  src: url("../fonts/sourcesanspro-regular-webfont.0ad0086da45d.woff2") format('woff2'),
       url("../fonts/sourcesanspro-regular-webfont.73c60425f20e.woff") format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'AnjaliOldLipi';
  src: url("../fonts/AnjaliOldLipi.d33324e57404.woff2") format('woff2'),
      url("../fonts/AnjaliOldLipi.c374c9f1cdd1.woff") format('woff');
  font-weight: normal;
}
@font-face {
  font-family: 'revathi_normal';
  src: url("../fonts/Revathi-Normal.22d4504559d7.woff2") format('woff2'),
      url("../fonts/Revathi-Normal.0fb1b5f76d35.woff") format('woff');
  font-weight: normal;
}
@font-face {
  font-family: 'Noto_Sans_Malayalam';
  src: url("../fonts/NotoSansMalayalam-Regular.5551e699005f.woff2") format('woff2'),
      url("../fonts/NotoSansMalayalam-Regular.50b246d6676f.woff") format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rachana';
  src: url("../fonts/Rachana.aa48f89fbdfb.woff2") format('woff2'),
      url("../fonts/Rachana.fd994ef572e3.woff") format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*-------- scroll bar----------- */
/* Scroll bar track */
::-webkit-scrollbar {
  width: 5px;
}

/* Scroll bar thumb */
::-webkit-scrollbar-thumb {
  background-color: #888; /* Color of the scroll thumb */
  border-radius: 2px; /* Round the corners of the thumb */
}

/* Scroll bar track on hover */
::-webkit-scrollbar-track:hover {
  background-color: #ddd; /* Color of the track on hover */
}

/* Scroll bar thumb on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Color of the thumb on hover */
}


/* Site variables */
:root {
  --primary-color:#000;
  --secondary-color:#CBB58B;
  
}
/* Reset styles */
*{
  margin:0;
  padding:0;
  border:none;
  box-shadow:none;
  outline:none;
  line-height:1;
  box-shadow:none;
}
html{
  font-size:62.5%;
}
body{
  font-size:1.6rem;
  background-color:transparent;
  color:var(--primary-color);
  width:100%;
  height:auto;
  position:relative;
  font-family: 'source_sans_proregular';
  font-weight:400;
}
body.fixed{
  overflow:hidden;
}
/* Header starts */
.absolute-top{
  position:absolute;
  top:0;
  width:100%;
  height:120px;
  background-color:var(--primary-color);
}
.navbar form{
  display:none;   
}
.site-logo{
  max-width:220px;
}
.logobar-inner{
  position:relative;
  min-height:120px;
  background-color:transparent;
  background-color:var(--primary-color);
  display:flex;
  align-items:center;
  justify-content:left;
}
.logobar-inner .logo-text{
  color:var(--secondary-color);
  text-transform:uppercase;
  font-family: 'source_sans_probold';
  font-size:2rem;
  margin-bottom:0;
  text-align:center;
  line-height:1.6;
  
}
.logobar-inner .logo-text span{
  display:block;
  text-align:center;
  font-size:2.6rem;
}
.navbar{
  position:relative;
  min-height:85px;
  background-color:var(--secondary-color) !important;
  padding:0;
}
.navbar .container{
  width:100%;
  max-width:100%;
  padding:0;
}
.navigation.navbar-nav{
  width:100%;
  display:flex;
  align-items:center;
  position:relative;
  min-height:85px;
  background-color:var(--secondary-color);
  justify-content:flex-end;
}
.navigation.navbar-nav li{
  height: 100%;
  position: relative;
  min-height:55px;
}
.navigation.navbar-nav li .dropdown-menu{
  background-color:transparent;
  border:none;
  width:100%;
  padding:0;
  margin-top:-1px;
}
.navigation.navbar-nav li.dropdown:hover .dropdown-menu{
  display:block;
}
.navigation.navbar-nav li .dropdown-menu li,
.navigation.navbar-nav li .dropdown-menu li a{
  background-color:rgb(203, 183, 139);
  min-height:unset;
}
.navigation.navbar-nav li .dropdown-menu li a{
  padding:10px 20px;
  border-bottom: 2px solid rgb(230,190,138);
  white-space: normal;
  text-align: left;
  line-height: 1.3;
}
.navigation.navbar-nav li .dropdown-menu li a:hover{
  background-color:rgb(225,169,95) !important;
  color:var(--primary-color) !important;
}
.navigation.navbar-nav li a{
  display:flex;
  align-items:center;
  justify-content:left;
  font-family: 'source_sans_probold';
  font-size: 1.6rem;
  color: var(--primary-color) !important;
  text-decoration: none;
  transition: all 0.3s linear;
  height: 100%;
  padding: 18px 20px;
  border:none;
  min-height:85px;
  background-color:var(--secondary-color);
}
.navigation.navbar-nav li.active a{
  background-color:var(--primary-color);
  color:var(--secondary-color) !important;
}
.navigation.navbar-nav li.active .dropdown-menu li a{
  background-color:var(--seconary-color);
  color:var(--primary-color) !important;
}
.navigation.navbar-nav li.active .dropdown-menu li a:hover{
  /* background-color:var(--primary-color); */
  color:var(--primary-color) !important;
}
.navigation.navbar-nav li:hover > a{
  background-color:var(--primary-color);
  color:var(--secondary-color) !important;
}
.navbar-brand{
  font-family: 'source_sans_probold';
  font-size: 1.6rem;
  color: var(--primary-color);
  text-transform:uppercase;
  padding:0 20px;
  min-height:55px;
  display:flex;
  align-items:center;
}
.navbar-brand img{
  height:54px;
}
.navbar-collapse {
  width:100%;
}
/* .navigation ul{
  position:relative;
  height:100%;
  min-height:55px;
  background-color:var(--secondary-color);
  color:var(--primary-color);
  display:flex;
  list-style:none;
  align-items:center;
  justify-content:center;
  margin-bottom:0;
  overflow:visible;
} */

/* Mobile navigation starts*/
.mobile-menu{
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:55px;
  position:absolute;
  right:20px;
  display:none;
}
.mobile-menu .mobile-menu-trigger{
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:55px;
}
.mobile-menu .menu-title{
  text-transform:uppercase;
  font-family: 'source_sans_probold';
  margin-right:5px;
}
.mobile-menu .hamburger{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  min-height:34px;
  background-color:var(--primary-color);
  padding:10px;
  border-radius:3px;
} 
.mobile-menu .hamburger span{
  width:22px;
  height:3px;
  background-color:var(--secondary-color);
  transition:all 0.2s linear;
}
.mobile-menu.active .hamburger span:nth-child(1){
  transform: rotate(45deg);
}
.mobile-menu.active .hamburger span:nth-child(2){
  display:none;

}
.mobile-menu.active .hamburger span:nth-child(3){
  transform: rotate(-45deg);
  margin-top:-7px;
}
.mobile-menu .hamburger span:not(:last-child){
  margin-bottom:3px;
}
.mobile-navbar{
  position:relative;
  z-index:999;
  position:fixed;
  width:100%;
  height:100%;
  transition:all 0.3s linear;
  opacity:0;
  visibility:hidden;
  top:120px;
}
.mobile-navbar.show{
  display:block;
  opacity:1;
  visibility:visible;
}
.mobile-navbar ul{
  width:100%;
  height:100%;
  background-color:var(--secondary-color);
  z-index:999;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  padding-top:30px;
  margin-bottom:0;
  list-style:none;
}
.mobile-navbar li{
  padding:18px 25px;
  width:100%;
  text-align:center;
}
 .mobile-navbar li:not(:last-child){
  border-bottom:1px solid var(--primary-color);
}
 .mobile-navbar li a{
  font-family: 'source_sans_probold';
  font-size:1.6rem;
  color:var(--primary-color);
  text-decoration:none;
  transition:all 0.3s linear;
  text-transform:uppercase;
  height:100%;
}
 .mobile-navbar li:hover,
 .mobile-navbar li:active,
 .mobile-navbar li:focus
{
  text-decoration:none;
  background-color:var(--primary-color);
  color:var(--secondary-color);
}
 .mobile-navbar li:hover a,
 .mobile-navbar li:active a,
 .mobile-navbar li:focus a
{
  text-decoration:none;
  background-color:var(--primary-color);
  color:var(--secondary-color);
}
 .mobile-navbar .hamburger-close-btn{
  position:absolute;
  top:40px;
  right:20px;
  color:var(--secondary-color);
  background-color:var(--primary-color);
  z-index:9999;
  font-size:2.6rem;
  font-family: 'source_sans_probold';
  cursor:pointer;
  padding:10px;
}
/* Mobile navigation ends */
/* Header ends */
/* Banner starts */
.page-banner{
  height:600px;
  background-size:cover;
  background-position:center center;
  padding:0;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  /* background-image:url("../img/bg1.628789bc3e41.jpg"); */
  position:relative;
}
.page-banner:before{
  position:absolute;
  content:'';
  width:100%;
  height:100%;
  background-color: rgba(0,0,0,0.8);
  z-index:1;
}
.page-banner .overlay-text{
  position:absolute;
  z-index:2;
  text-align:center;
}
.page-banner .banner-image{
  padding:0;
  width:100%;
  height:100%;
}
.page-banner .banner-image p{
  display:none;
}
.page-banner h2,
.page-banner h3,
.page-banner h4,
.page-banner .explore-btn{
  color:var(--secondary-color);
  z-index:99;
}
.page-banner h2{
  line-height:1;
  font-size:7.2rem;
  font-family: 'source_sans_probold';
  margin-bottom:30px;
}
.page-banner h3{
 font-family: 'source_sans_proregular';
 line-height:1;
 font-size:3.6rem;
 margin-bottom:30px;
 letter-spacing:2px;
}
.page-banner img{
  object-fit:cover;
  object-position:center center;
  width:100% !important;
  height:100% !important;
}
.page-banner h4{
  font-family: 'source_sans_proregular';
  line-height:1.5;
  text-align: left;
  font-size:2.6rem;
  margin-bottom:30px;
  margin-left: 50px;
  letter-spacing:2px;
 }
.page-banner .explore-btn{
  font-family: 'source_sans_proregular';
  font-size:2rem;
  padding:15px 25px;
  background-color:transparent;
  border:1px solid var(--secondary-color);
  transition:all 0.3s linear;
  letter-spacing:2px;
}
.page-banner .explore-btn:hover,
.page-banner .explore-btn:active,
.page-banner .explore-btn:focus
{
  background-color:var(--secondary-color) !important;
  color:var(--primary-color) !important;
  border-color:var(--secondary-color) !important;
  outline:none !important;
  box-shadow:none !important;
}
/* Banner ends */
/* Cards container starts */
.cards-container{
  max-width:1080px;
  margin:auto;
  padding:80px 0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-gap:40px;
}
.cards-container .card-block{
  min-height:290px;
  margin:0;
  padding:0;
  text-align:center;
  border:none;
  position:relative;
  transition: all 0.2s linear;
  /* box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); */
}
.cards-container .card-block img{
  border:8px solid var(--secondary-color);
  position:relative;
}
.cards-container .card-block:before{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.2);
  z-index: 1;
  content: '';
}
.cards-container .card-block:hover:before{
  background-color: rgba(203,181,139,0.7);
}
.cards-container .card-block:hover{
  transform:scale(1.1);
}
.cards-container .card-block .card-text{
  display:none;
}
.cards-container .card-block .card-body{
  background-color:var(--primary-color);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:1;
}
.cards-container .card-block .card-title{
  color: var(--secondary-color);
  font-family: 'source_sans_probold';
  font-size: 2rem;
  text-decoration: none;
  margin-bottom:0;
  padding:15px;
}
.cards-container .card-block .card-footer{
  padding:20px 10px;
  background-color:#fff;
  z-index:1;
}
.cards-container .card-block .card-footer .learn-more,
.cards-container .card-block .card-footer .learn-more:active,
.cards-container .card-block .card-footer .learn-more:active,
.cards-container .card-block .card-footer .learn-more:focus
{
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 15px 25px;
  font-family: 'source_sans_probold';
  font-size: 1.6rem;
  border: none;
  outline: none;
  transition: all 0.3s linear;
  border:none;
  outline:none;
}
.cards-container .card-block a:hover:before{
  background-color: rgba(203,181,139,0.7);
}
.cards-container .card-block a + p a:hover:before{
  z-index:-1;
  transition:all 0.1s linear;
}
.cards-container .card-block a + p a:hover{
  color:var(--primary-color);
  z-index:1;
}
.cards-container .card-block a img{
  height:228px;
  object-fit:cover;
  object-position:center center;
  width:100%;
  border:8px solid var(--secondary-color);
}
.cards-container .card-block a + p a{
  color:var(--secondary-color);
  background-color:var(--primary-color);
  height:85px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family: 'source_sans_probold';
  font-size:2.2rem;
  border:8px solid var(--primary-color);
  text-decoration:none;
}
.learn-more-btn-container{
  text-align:center;
}
.learn-more-btn-container .learn-more{
  background-color:var(--secondary-color);
  color:var(--primary-color);
  padding:15px 25px;
  font-family: 'source_sans_probold';
  font-size:1.6rem;
  border:none;
  outline:none;
  transition:all 0.3s linear;
}
.learn-more-btn-container .learn-more:hover,
.learn-more-btn-container .learn-more:active,
.learn-more-btn-container .learn-more:focus
{
  background-color:var(--primary-color)!important;
  color:var(--secondary-color) !important;
  border:none !important;
  outline:none !important;
  box-shadow:none !important;
}
/* Cards container ends */
/* Page footer starts*/
.main-footer{
  height:auto
}
.template-coming-soon .main-footer{
  position:fixed;
  bottom:0;
  width:100%;
}
.main-footer .copyright{
  background-color:var(--secondary-color);
  min-height:85px;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:20px 0;
}
.main-footer .copyright h3{
  text-align:center;
}
.main-footer .copyright h3 b{
  font-weight:normal;
}
.main-footer .copyright h3 a,
.main-footer .copyright h3 a:hover,
.main-footer .copyright h3 a:active,
.main-footer .copyright h3 a:focus{
  font-weight:700;
  text-decoration:none;
  color:var(--primary-color);
}
.main-footer .copyright h3 a b{
  font-weight:700;
}
.main-footer .copyright p{
  font-family: 'source_sans_proregular';
  font-weight:400;
  font-size:1.6rem;
  color:var(--primary-color);
  margin-bottom:0;
  line-height:1.7;
  text-align:center;
}
.main-footer .copyright p a{
  color:var(--primary-color);
  text-decoration:none;
  font-weight:700;
}
.main-footer .footer-navbar{
  background-color:#fff;
  padding:30px 62px;
  background-color:var(--primary-color);
}
.main-footer .footer-navbar .footer-navbar-segment .site-logo{
  max-width:168px;
}
.main-footer .footer-navbar .footer-navbar-segment.quick-links{
  display:flex;
  flex-direction:column;
}
.main-footer .footer-navbar .footer-navbar-segment.quick-links{
  display:flex;
  flex-direction:column;
  padding:0;
  margin:0;
  list-style:none;
}
.main-footer .footer-navbar .footer-navbar-segment.quick-links li{
  margin-bottom:10px;
}
.main-footer .footer-navbar .footer-navbar-segment.quick-links li a,
.main-footer .footer-navbar .footer-navbar-segment.quick-links li a:hover,
.main-footer .footer-navbar .footer-navbar-segment.quick-links li a:active,
.main-footer .footer-navbar .footer-navbar-segment.quick-links li a:focus{
  text-decoration:none;
  color:var(--secondary-color);
  text-transform:uppercase;
  font-size:1.5rem;
}
.main-footer .footer-navbar .footer-navbar-segment h3{
  font-size:1.8rem;
  margin-bottom:15px;
  color:#fff;
  text-transform:uppercase;
}
.main-footer .footer-navbar .footer-navbar-segment.social-media-links{
  display:flex;
  padding:0;
  margin:0;
  list-style:none;
}
.main-footer .footer-navbar .footer-navbar-segment.social-media-links a img{
  max-width:30px;
} 
.main-footer .footer-navbar .footer-navbar-segment.social-media-links a:not(:last-child) img{
  margin-right:20px;
}
/* Page footer ends */
/* Alphabet landing page starts */
/* Sidebar active menu selection */
/* .coderedcms-alphabetpage .alphabet-selector,
.coderedcms-umlautpage .umlauts-selector,
.coderedcms-eszettpage .ss-selector,
.coderedcms-diphthongpage .diphthongs-selector,
.coderedcms-diphthongpage .diphthongs-selector,
.coderedcms-numberspage .numbers-selector,
.coderedcms-colourspage .colors-selector,
.coderedcms-monthspage .months-selector
{
  color: var(--primary-color) !important;
  background-color: var(--secondary-color);
} */
/* Sidebar active menu selection */

.data-container{
  padding:0;
  position:relative;
  padding-top:30px;
}
.data-container .back-btn{
  position:absolute;
  top:25px;
  right:30px;
  background-color:var(--primary-color);
  color:var(--secondary-color);
  font-family:"source_sans_probold";
  padding:5px 11px;
  font-size:1.6rem;
  text-decoration:none;
  cursor:pointer;
}
.alphabet-landing-container{
  position:relative;
  overflow:hidden;
  min-height:402px;
}
.alphabet-landing-container .sidebar{
  width:214px;
  max-width:214px;
  background-color:var(--primary-color);
  color:var(--secondary-color);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content: flex-start;
  padding:40px 0;
}
.alphabet-landing-container .sidebar.show{
  left:0;
}
.alphabet-landing-container .sidebar .sidebar-container{
  position:relative;
  width:100%;
  margin:0;
}
.alphabet-landing-container .sidebar .category-selector{
  padding:0;
}
.alphabet-landing-container .sidebar .category-selector p{
  margin-bottom:0;
}
.alphabet-landing-container .sidebar .category-selector.active a{
  color: var(--primary-color);
  background-color: var(--secondary-color);
}
.alphabet-landing-container .sidebar .sidebar-container .mobile-sidebar-trigger{
  background-color:var(--primary-color);
  color:var(--secondary-color);
  padding:5px 11px;
  position:absolute;
  top:-22px;
  left:214px;
  display:none;
  width:60px;
  max-width: 60px;
  align-items: center;
  justify-content: center;
}
.alphabet-landing-container .sidebar .sidebar-container .mobile-sidebar-trigger span{
  display:none;
  transition:all 0.3s linear;
}
.alphabet-landing-container .sidebar .sidebar-container .mobile-sidebar-trigger span.show{
  display:block;
}
.alphabet-landing-container .sidebar .sidebar-container .mobile-sidebar-trigger p{
  margin-bottom:0;
}
.alphabet-landing-container .sidebar .block-html{
  width:100%;
}
.alphabet-landing-container .sidebar a{
  font-family: 'source_sans_probold';
  font-size:1.6rem;
  color:var(--secondary-color);
  padding:15px 35px;
  width:100%;
  text-align:left;
  margin-bottom:0;
  cursor:pointer;
  text-decoration:none;
  display:block;
}
.alphabet-landing-container .sidebar a.active_menu
{
  color:var(--primary-color);
  background-color:var(--secondary-color);
}
.alphabet-landing-container .sidebar a:hover,
.alphabet-landing-container .sidebar a:active,
.alphabet-landing-container .sidebar a:focus
{
  font-family: 'source_sans_probold';
  font-size:1.6rem;
  color:var(--primary-color);
  background-color:var(--secondary-color);
}
.alphabets-landing-page {
  overflow:hidden;
  padding:0;
}
.alphabet-landing-container h2{
  font-family: 'source_sans_probold';
  font-size:3.6rem;
  color:var(--primary-color);
  width:100%;
  text-align:left;
  margin-bottom:0;
  line-height:4.2rem;
  margin-bottom:51px;
  position:absolute;
  top:55px;
  text-align:center;
  left:0;
}
.alphabet-landing-container  h3{
  font-family: 'source_sans_probold';
    font-size: 2rem;
    color: var(--primary-color);
    width: 100%;
    text-align: left;
    margin-bottom: 0;
    line-height: 4.2rem;
    margin-bottom: 51px;
    position: absolute;
    top: 103px;
    text-align:center;
    left: 0;
}
.alphabet-landing-container .category-cards-container{
  padding:108px 52px 40px;
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-gap:40px;
  overflow:hidden;
  text-decoration:none;
  justify-items: center;
  align-items: center;
}
.alphabet-landing-container .category-cards-container a{
  text-decoration:none;
  width:100%;
  font-family: 'source_sans_probold';
  font-size: 2.2rem;
  color: var(--primary-color);
  width: 100%;
  text-align: left;
  margin-bottom: 0;
  cursor: pointer;
  line-height: 4.2rem;
  min-height: 154px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  border:none;
  outline:none;
  box-shadow:none;
}
.alphabet-landing-container .category-cards-container a:hover,
.alphabet-landing-container .category-cards-container a:active,
.alphabet-landing-container .category-cards-container a:focus{
  background-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  border:none !important;
  outline:none !important;
  box-shadow:none !important;
}
.alphabet-landing-container .category-cards-container a p{
  text-align:center;
  padding:0 10px;
}
.alphabets-landing-page p{
  font-family: 'source_sans_probold';
  font-size:3.6rem;
  color:var(--primary-color);
  width:100%;
  text-align:left;
  margin-bottom:0;
  cursor:pointer;
  line-height:4.2rem;
  min-height:154px;
  background-color:var(--primary-color);
  color:var(--secondary-color);
  display:flex;
  justify-content:center;
  align-items:center;
  border-radius:12px;
}
/* Alphabet landing page ends */
/* Example listing page starts */
.alphabet-landing-container .example-cards-container{
 display:flex;
 padding: 108px 52px 100px;
 grid-template-columns:repeat(5,auto);
 grid-gap:0;
 justify-content:center;
 position:relative;
 flex-wrap:wrap;
}
.alphabet-landing-container .example-cards-container .no-item{
  position:absolute;
  top:15px;
  left:0;
  font-family: 'source_sans_probold';
  font-size:1.8rem;
  color:var(--primary-color);
  width: 100%;
  transition:all 0.2s linear;
  text-align: center;
  display:none;
}
.alphabet-landing-container .example-cards-container .no-item.show{
  display:block;
}
.example-cards-container .example-cards-wrap{
  width:auto;
  text-decoration:none;
  opacity:0;
  visibility:hidden;
  display:none;
  transition:all 0.3s linear;
  height:auto;
  max-width:unset;
  text-align:center;
  padding:0 10px;
  margin-bottom:40px;
}
.example-cards-container .example-cards-wrap.show{
  opacity:1;
  visibility:visible;
  display:block;
}
.example-cards-container .example-cards-wrap img{
  width:auto;
  height:auto;
  max-width:100%;
  border:4px solid var(--secondary-color);
}
.example-cards-container .example-cards-wrap span{
  font-family: 'source_sans_probold';
  font-size:1.8rem;
  color:var(--primary-color);
  width: 100%;
  display: block;
  text-align: center;
  text-decoration:none;
  margin-top:25px;
}
.phonetics-tab-wrap{
  width:100%;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  padding:125px 36px 34px;
  max-width:698px;
  margin:auto;
  /* grid-gap:20px; */
}
.coderedcms-alphabetexamplespage .phonetics-tab-wrap,
.coderedcms-umlautexamplespage .phonetics-tab-wrap,
.coderedcms-eszettexamplespage .phonetics-tab-wrap,
.coderedcms-diphthongexamplespage .phonetics-tab-wrap,
.coderedcms-numberdetailpage .phonetics-tab-wrap,
.coderedcms-colourdetailpage .phonetics-tab-wrap,
.coderedcms-monthdetailpage .phonetics-tab-wrap 
{
  padding: 135px 36px 34px;
}
.alphabet-landing-container  .example-cards-container{
  padding-top:0;
  padding-bottom:100px;
}
.phonetics-tab-wrap .phonetics-tab{
  padding:15px 26px;
  font-family: 'source_sans_probold';
  background-color:#7f7f7f;
  color:#fff;
  font-size:2rem;
  cursor:pointer;
  text-align:center;
  border-bottom:1px solid var(--primary-color);
  transition:all 0.2s linear;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}
.coderedcms-alphabetexamplespage .phonetics-tab-wrap .phonetics-tab{
  cursor:default;
}
.phonetics-tab-wrap .phonetics-tab:not(:last-child){
  border-right:1px solid var(--secondary-color);
}
.phonetics-tab-wrap .phonetics-tab.active{
  background-color:var(--primary-color);
  color:var(--secondary-color);
  border-right:none;
}
/* Example listing page ends */

/* Example details page starts */
.example-details-container{
  display:flex;
  flex-direction:column;
  max-width:758px;
  margin:auto;
  padding:0 15px;
}
.example-details-container .months-detail-page-container{
  display:flex;
  flex-direction:column;
  padding-top:125px;
}
.example-details-container.type2{
  margin-top:40px;
}
.example-details-container .example-title{
  font-family: 'source_sans_probold';
  font-size:2.2rem;
  color:var(--primary-color);
  margin:0 auto 30px;
}
.example-details-container .example-number-block,
.example-details-container .example-description-block{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px; 
  background-color:var(--primary-color);
  margin:30px 0;
}
.example-details-container .example-number-block span,
.example-details-container .example-description-block span{
  font-family: 'source_sans_probold';
  font-size:2.4rem;
  color:var(--secondary-color);
}

.example-details-container .example-deatil-image-wrap{
  display:flex;
  justify-content:center;
  height:auto;
  overflow: hidden;
}
.example-details-container .example-deatil-image-wrap .quantity-image-container{
  width:auto;
  max-width:unset;
  margin-right:48px;
}
.example-details-container .example-deatil-image-wrap .example-image-container{
  width:auto;
  max-width:unset;
  position:relative;
}
.example-details-container .example-deatil-image-wrap .example-image-container .speaker-icon-wrap{
  position:absolute;
  width:auto;
  height:auto;
  max-width:100%;
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
}
.example-details-container .example-deatil-image-wrap .example-image-container .speaker-icon-wrap img{
  width: 50px;
  height: auto;
}
.example-details-container .example-deatil-image-wrap .quantity-image-container img{
  width:auto;
  height: auto;
  border:2px solid var(--secondary-color);
  max-width:100%;
}
.example-details-container .example-deatil-image-wrap .example-image-container img{
  width:auto;
  height:auto;
  border:2px solid var(--secondary-color);
  max-width:100%;
}
.example-details-container .speaker-icon-wrap{
  text-decoration:none;
  cursor:pointer;
  max-width:50px;
  margin:50px auto 10px;
  width:50px;
  height:50px;
}
.example-details-container .speaker-icon{
  cursor:pointer;
  width:100%;
}
.example-details-container .qr-code{
  max-width:150px;
  margin:0 auto 80px;
}
.example-details-container .type1.show,
.example-details-container .type2.show{
  display:block !important;
}
.example-details-container .type3.show{
  display:flex !important;
}
.coderedcms-alphabetexamplespage .data-container .back-btn,
.coderedcms-umlautexamplespage .data-container .back-btn,
.coderedcms-eszettexamplespage .data-container .back-btn,
.coderedcms-diphthongexamplespage .data-container .back-btn,
.coderedcms-numberdetailpage .data-container .back-btn,
.coderedcms-colourdetailpage .data-container .back-btn,
.coderedcms-monthdetailpage .data-container .back-btn{
  display:block;
}
.coderedcms-alphabetpage .data-container .back-btn,
.coderedcms-colourspage .data-container .back-btn,
.coderedcms-umlautpage .data-container .back-btn,
.coderedcms-diphthongpage .data-container .back-btn,
.coderedcms-numberspage .data-container .back-btn,
.coderedcms-monthspage .data-container .back-btn{
  display:none;
}
/* Example details page ends */
.phonetics-tab span.item-count{
  content:'';
  width:28px;
  height:28px;
  background-color:var(--secondary-color);
  top: -38px;
  left: 0;
  right: 0;
  margin:0;
  margin-left:10px;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  border-radius: 100%;
  transition:all 0.3s linear;
}
.phonetics-tab span.hidden{
  display:none;
}
/* About us page starts */

.about-us-content{
  padding:114px 84px 50px;
}
.about-us-content h2{
  font-family: 'source_sans_probold';
  font-size:3.6rem;
  color:var(--primary-color);
  margin:0 auto 36px;
  line-height:4.2rem;
}
.about-us-content .about-us-section{
  margin-bottom:50px;
}
.about-us-content p{
  font-family: 'source_sans_proregular';
  font-size:1.6rem;
  color:var(--primary-color);
  line-height:3.2rem;
}
.message-us-block{
  min-height:320px;
  display:flex;
  justify-content:center;
  align-items:center;
  background-color:var(--secondary-color);
}
.message-us-block .message-us-btn{
  background-color:transparent;
  color: var(--primary-color);
  border:1px solid #000;
  padding: 15px 25px;
  font-family: 'source_sans_probold';
  font-size: 1.6rem;
  outline: none;
  transition: all 0.3s linear;
}
.message-us-block .message-us-btn:hover,
.message-us-block .message-us-btn:active,
.message-us-block .message-us-btn:focus{
  background-color: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  border: none !important;
  outline: none !important;
  box-shadow:none !important;
}
/* About us page ends */

/* Contact us page starts */
.coderedcms-formpage #content{
  max-width:722px;
  margin:auto;
  padding:0 0 35px;
  margin:50px auto;
}
.coderedcms-formpage .container.my-5{
  text-align:center;
  max-width:480px;
  margin:auto;
}
.coderedcms-formpage h1{
  color: var(--primary-color);
  font-family: 'source_sans_probold';
  font-size: 3.6rem;
}
.coderedcms-formpage form{
  max-width:480px;
  margin:auto;
}
.coderedcms-formpage form .form-group{
  flex-direction:column;
  align-items:center;
  margin-bottom: 25px;
}
.coderedcms-formpage form .form-group small{
  color: #950202 !important;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.4em;
  display: none;
  text-align: left;
  font-family:'source_sans_proregular';
  transition:all 0.2s linear;
}
.coderedcms-formpage form .form-group.mt5{
  margin-top:0 !important;
}
.coderedcms-formpage form .form-group input{
  font-size:1.6rem;
  font-family: 'source_sans_proregular';
  padding: 12px 15px;
  line-height: 1.4em;
  color:var(--primary-color);
  border:1px solid var(--secondary-color);
}
.coderedcms-formpage form .form-group textarea{
  font-size:1.6rem;
  font-family: 'source_sans_proregular';
  max-height:160px;
  color:var(--primary-color);
  border:1px solid var(--secondary-color);
}
.coderedcms-formpage form .form-group input.error,
.coderedcms-formpage form .form-group textarea.error{
  border:1px solid #950202;
}

.coderedcms-formpage form .form-group label{
  width:100%;
  max-width:75%;
  color: var(--primary-color);
  font-family: 'source_sans_probold';
  font-size: 1.6rem;
  display:none;
}
.coderedcms-formpage button[type="submit"]{
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 15px 25px;
  font-family: 'source_sans_probold';
  font-size: 1.6rem;
  border: none;
  outline: none;
  transition: all 0.3s linear;
  border: none;
  outline: none;
  margin:auto;
  display:block;
}
.coderedcms-formpage button[type="submit"]:hover,
.coderedcms-formpage button[type="submit"]:active,
.coderedcms-formpage button[type="submit"]:focus
{
  background-color: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  border: none !important;
  outline: none !important;
  box-shadow:none !important;
}
/* Contact us page ends */

/* 404,500 page styles start */
body.error-page{
  background-image:none;
}
#notfound {
  position: relative;
  height: 100vh;
}

#notfound .notfound {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.notfound {
  max-width: 530px;
  width: 100%;
  text-align: center;
  line-height: 1.4;
}

.notfound .notfound-404 {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0px auto 50px;
}

.notfound .notfound-404>div:first-child {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(203, 181, 139);
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  border: 5px dashed #000;
  border-radius: 5px;
}

.notfound .notfound-404>div:first-child:before {
  content: '';
  position: absolute;
  left: -5px;
  right: -5px;
  bottom: -5px;
  top: -5px;
  -webkit-box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.1) inset;
          box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.1) inset;
  border-radius: 5px;
}

.notfound .notfound-404 h1 {
  /* font-family: 'Cabin', sans-serif; */
  font-family: 'Source Sans Pro', sans-serif;
  color: #000;
  font-weight: 700;
  margin: 0;
  font-size: 90px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  text-align: center;
  height: 40px;
  line-height: 40px;
}

.notfound h2 {
  /* font-family: 'Cabin', sans-serif; */
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 33px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 7px;
  margin:20px auto;
}
.notfound p.error-page-text{
  margin:20px auto;
}
.notfound p {
  /* font-family: 'Cabin', sans-serif; */
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 400;
}

.notfound a {
  /* font-family: 'Cabin', sans-serif; */
  font-family: 'Source Sans Pro', sans-serif;
  display: inline-block;
  padding: 10px 25px;
  background-color: rgb(203, 181, 139);
  border: none;
  border-radius: 40px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.notfound a:hover {
  background-color: #2c2c2c;
  color:rgb(203, 181, 139);
}
/* media queries */
.notfound h2{
  font-size: 21px;
}
/* 404,500 page styles end */
/* Contrast and compare sound starts*/
body.parent-page-13 h1{
  text-align:center;
  font-family: 'source_sans_probold';
  margin-bottom:40px;
}
.compare-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-gap:0;
  padding:0 15px;
  position:relative;
}
.compare-grid .card-body{
  border:4px solid var(--secondary-color);
}
.compare-grid .card-body h5{
  font-family: 'source_sans_probold';
  font-size: 2.4rem;
  color:var(--primary-color);
}
.compare-grid .card-body h6{
  font-family: 'source_sans_proregular';
  font-size: 2rem;
  color:var(--primary-color) !important;
}
.compare-grid .card-body .card-text p{
  font-family: 'source_sans_proregular';
  font-size: 1.6rem;
  color:var(--primary-color) !important;
}
.compare-grid .card-footer{
  background-color: var(--primary-color);
  text-align:center;
}
.compare-grid.card-deck .card{
  margin-bottom: 30px !important;
}
.compare-grid h3{
  position:absolute;
  left:15px;
}
.compare-grid .card-footer a{
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 8px 15px;
  font-family: 'source_sans_probold';
  font-size: 1.6rem;
  border: none;
  outline: none;
  transition: all 0.3s linear;
  border: none;
  outline: none;
  margin-bottom:10px;
}
/* Contrast and compare sound ends*/
/* Alpahbet songs page starts */
.alphabet-song-inner-container{
  display:flex;
  flex-direction: column;
  justify-content:center;
  align-items:center;
  padding:0 0 130px;
}
.alphabet-song-inner-container .lyrics{
  text-align: center;
  line-height: 25px;
  margin-bottom: 40px;
  font-family: 'source_sans_proregular';
  font-size:1.6rem;
  padding:0 15px;
  word-break:break-all;
}
/* Alphabet songs page ends */

/* Breadcrumb starts */
  .ui-breadcrumb{
    position:absolute;
    left:30px;
    top:25px;
    padding:5px 11px;
    background-color:#D3D3D3;
    display:flex;
    align-items:center;
    z-index:999;
  }
  .ui-breadcrumb a,
  .ui-breadcrumb a:hover,
  .ui-breadcrumb a:active,
  .ui-breadcrumb a:focus{
    color:var(--primary-color);
    font-family: 'source_sans_probold';
    font-size:1.6rem;
    display:flex;
    align-items:center;
    text-decoration:underline;
  }
  .ui-breadcrumb span.divider{
    content:">";
    margin:0 8px;
    text-decoration:none;
    color:var(--primary-color);
    font-size:2rem;
  }
  .ui-breadcrumb span.last-link{
    color:var(--primary-color);
    font-family: 'source_sans_probold';
  }
/* Breadcrumb ends */
/* Creative works page starts */
.container-creative-works{
  min-height:500px;
  max-width:1366px;
  margin:auto;
  padding-bottom:30px;
  position:relative;
  padding-top:40px
}
.container-creative-works-detail .creative-work{
  width:100%;
  max-width:100%;
  margin-top:10px;
}
.container-creative-works-detail .ui-breadcrumb{
  position:relative;
  margin-bottom:20px;
  left:unset;
  top:unset;
  width:auto;
  margin:auto 31px;
  max-width:1274px;
}
.filter-wrap{
  display:flex;
  justify-content:flex-end;
  padding:33px 20px 0;
}
.dropdown-component{
  width:auto;
  position:relative;
  max-width:280px;
}
.dropdown-component .dropdown-trigger{
  width:100%;
  display:flex;
  justify-content:space-between;
  padding:9px 15px;
  border: 1px solid rgb(203, 181, 139);
  align-items:center;
  background-color:#f4f4f4;
  height:41px;
}
.dropdown-component .dropdown-trigger img{
  max-height:18px;
  cursor:pointer;
}
.dropdown-component input{
  padding:0;
  font-family:'source_sans_proregular';
  font-size:16px;
  line-height:21px;
  color:#333;
  transition:all 0.3s linear;
  cursor:pointer;
}
.dropdown-component .dropdown-menu{
  display:flex;
  flex-direction:column;
  list-style:none;
  width:100%;
  position:absolute;
  z-index:999;
  border:none;
  top:43px;
  opacity:0;
  visibility:hidden;
  transition:all 0.2s linear;
  padding:0;
}
.dropdown-component .dropdown-language-list {
  height: 500px;
  overflow-y: scroll;
}
.dropdown-component .dropdown-menu.show{
  opacity:1;
  visibility:visible;
}
.dropdown-component .dropdown-menu li{
  padding:9px 22px;
  font-family:'source_sans_proregular';
  font-size:16px;
  line-height:21px;
  color:#000;
  background-color:rgb(203, 181, 139);
  transition:all 0.1s linear;
  border-bottom:1px solid #ad8d50;
  cursor:pointer;
}
.dropdown-component .dropdown-menu li:last-child{
  border-bottom:none;
}
.dropdown-component .dropdown-menu li:hover{
  color:rgb(203, 181, 139);
  background-color:#000;
}
.dropdown-component .dropdown-menu li.active{
  color:rgb(203, 181, 139);
  background-color:#000;
}
.creative-work{
  display:none;
  flex-direction:column;
  padding:0 23px;
  margin-bottom:0;
  width:100%;
  margin-top:33px;
}
.creative-work-inner-container{
  display:flex;
  justify-content:space-between;
  visibility:hidden;
  opacity:0;
  transition:0.3s linear;
  border:1px solid rgb(203, 181, 139);
  padding:23px;
}
.creative-work-inner-container .r-side{
  display:flex;
  justify-content:flex-start;
  flex-direction:column;
}
.creative-work-inner-container .r-side .photo-by{
  font-family:'source_sans_proregular';
  font-size:16px;
  margin-top:15px;
}
.creative-work.show{
  display:flex;
}
.creative-work.show .creative-work-inner-container{
  opacity:1;
  visibility:visible;
  flex-direction:column;
}
.creative-work .title{
  font-family:"source_sans_probold";
  font-size:21px;
  color:#000;
  line-height:18px;
  margin-bottom:5px;
}
.creative-work .author-data{
  width:100%;
}
.creative-work .author-name{
  font-family:"source_sans_proregular";
  font-size:14px;
  color:000;
  line-height:21px;
  margin-bottom:5px;
}
.creative-work .author-name span.sub-head{
  font-family:"source_sans_probold";
}
.creative-work .email_address{
  font-family:"source_sans_probold";
  font-size:14px;
  color:000;
  line-height:21px;
}
.creative-work .author-photo-container{
  width:auto;
  height:auto;
  margin-right:20px;
}
.creative-work .author-photo-container.mob{
  display:none;
  margin-bottom:10px;
}
.creative-work .l-side{
  display:flex;
  width:100%;
  align-items:flex-start;
  padding-right:20px;
}
.container-creative-works-detail .creative-work .l-side{
  flex-direction:column;
}
.creative-work .l-side .author-wrap{
  display:flex;
  width:100%;
  margin-bottom:10px;
}
.creative-work .l-side .content{
  height:auto;
  display:flex;
  flex-direction:column;
}
.creative-work .l-side .author-details{
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.title .super-script{
  font-size: x-small;
  position :relative;
  top: -1.5em;
}

.super-script{
  font-size: x-small;
  position :relative;
  top: -1em;
}
.creative-work .l-side .content .content-text{
  width:100%;
  display:flex;
  flex-direction:column;
}
.creative-work .l-side .content-photo{
  margin-top:20px;
  display:none;
}
.creative-work .content-photo img{
  width:100%;
  min-width:450px;
  max-width:450px;
  height:auto;
  object-fit:cover;
  object-position:center center;
}
.creative-work .l-side .content.show{
  height:auto;
}
/* .creative-work .author-photo-container img{
 width:auto;
 height:120px;
} */
.creative-work .author-photo-container img{
  width:auto;
  height:130px;
 }
.container-creative-works-detail .creative-work .creative-work-inner-container{
  flex-direction:row;
}
.creative-work .creative-work-inner-container{
  width:100%;
  min-height:168px;
}
.creative-work .creative-work-inner-container .content-photo{
  width:auto;
  height:auto;
  background-color:transparent;
}
.creative-work .content p{
  font-family:"source_sans_proregular";
  font-size:18px;
  line-height:28px;
  color:000;
  margin-bottom:0;
}
.creative-work .read-more,
.creative-work .read-more:active,
.creative-work .read-more:focus{
  text-transform: uppercase;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 15px 25px;
  font-family: 'source_sans_probold';
  font-size: 1.6rem;
  border: none;
  outline: none;
  transition: all 0.3s linear;
  border: none;
  outline: none;
  max-width:150px;
  min-width:150px;
  height:43px;
  margin-top:5px;
  text-decoration:none;
  text-align:center;
}
.detail-wrap{
  display:flex;
  width:100%;
  padding:23px 0 0;
}
.detail-wrap .content{
  display:flex;
  width:100%;
  justify-content:space-between;
}
.author-wrap .author-photo-container.mob{
  display:none;
}
/* Creative works page ends */

/* Flower quotes page starts */
.quotes-container{
  padding:50px;
  flex-direction:column;
}
.quotes-container .card{
    display: grid;
    grid-template-columns: 300px auto;
    padding: 15px;
}
.quotes-container .card-img-top{
  width:100%;
  max-width:320px;
  height:auto;
}
.quotes-container .card-footer{
  display:none;
}
.quotes-container .card-body .card-title{
  font-family:'source_sans_probold';
  font-size:2.2rem;
}
.quotes-container .card-body .card-subtitle{
  font-family:'source_sans_probold';
  font-size:1.6rem;
  color:#000 !important;
  margin-bottom:10px !important;
}
.quotes-container .card-body{
  padding:0 0 0 20px;
}
.quotes-container .card-body .card-title{
  font-family:'source_sans_probold';
  font-size:2.2rem;
}
.quotes-container .card-body .card-text p{
  font-family: "source_sans_proregular";
  font-size: 18px;
  line-height: 28px;
}
.quotes-container .card-body .card-text p b{
  font-family: "source_sans_probold";
  font-size: 1.6rem;
}
/* Flower quotes page ends */

.creative-work .translation-content-block-wrapper .author-name{
  margin-bottom:0;
}
.creative-work .author-name.author-name-translations{
  margin-bottom:0;
}
/* Media query starts */
@media (min-width: 992px){
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right:20px;
    padding-left:20px;
}
}
@media(max-width:1199px){
  .alphabet-landing-container  .category-cards-container
  {
    grid-template-columns: repeat(3,1fr);
  }
  .example-cards-container .example-cards-wrap{
    max-width:auto;
  }
  .data-container .back-btn {
    top: 25px;
    right: 30px;
  }
  .creative-work .content-photo img{
    min-width:unset;
  }
  .creative-work .title{
    font-size:17px;
  }
  .creative-work .author-name{
    font-size:15px;
  }
}
@media(max-width:991px){
  .navbar-toggler{
    margin-right:20px;
  }
  .navigation.navbar-nav li{
    width:100%;
    min-height:unset;
  }
  .navigation.navbar-nav > li{
    border-bottom:1px dotted #000;
  }
  .navigation.navbar-nav li a{
    text-align:center;
    min-height:auto;
    padding:12px 20px;
  }
  .alphabet-landing-container  .category-cards-container
  {
    grid-template-columns: repeat(2,1fr);
  }
  .alphabet-landing-container  .example-cards-container {
    grid-template-columns: repeat(3,1fr);
  }
  .example-cards-container .example-cards-wrap{
    max-width:auto;
  }
  .navbar-collapse{
    width: 100%;
    position: absolute;
    z-index: 999999;
    top: 85px;
  }
  .compare-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .creative-work-inner-container{
    flex-direction:column;
  }
  .creative-work-inner-container .r-side{
    display:none;
  }
  .creative-work .l-side .content-photo{
    display:block;
  }
  .quotes-container .card{
    grid-template-columns: 240px auto;
  }
  .creative-work{
    width:100%;
    max-width:100%;
    flex:0 0 100%;
    margin-bottom:0;
  }
}
@media(max-width:768px){
  .main-footer .footer-navbar .footer-navbar-segment,
  .main-footer .footer-navbar .footer-navbar-segment h3,
  .main-footer .footer-navbar .footer-navbar-segment.quick-links li
  {
    text-align:center;
  }
  .main-footer .footer-navbar .footer-navbar-segment.social-media-links{
    justify-content:center;
  }
  .alphabet-landing-container .category-cards-container
  {
    grid-template-columns: repeat(2,1fr);
  }
  .alphabet-landing-container .example-cards-container {
    grid-template-columns: repeat(3,auto);
  }
}
@media(max-width:767px){
   .mobile-menu{
    display:block;
  }
   .site-logo {
    max-width: 245px;
  }
  .logobar-inner{
    flex-direction:column;
  }
   .navigation{
    display:none;
  }
  .page-banner{
    height:480px;
  }
  .page-banner h2{
    font-size: 4.2rem;
  }
  .page-banner h3 {
    font-size: 2.6rem;
    margin-bottom: 20px;
  }
  .page-banner h4 {
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: 1;
    margin-bottom: 20px;
    margin-left: 0;
    padding-left: 10px;
  }
  .main-footer .copyright{
    flex-direction:column;
    line-height:1.4;
  }
  .main-footer .copyright p{
    font-size:1.4rem;
  }
  .main-footer .footer-navbar .footer-navbar-segment,
  .main-footer .footer-navbar .footer-navbar-segment h3,
  .main-footer .footer-navbar .footer-navbar-segment.quick-links li
  {
    text-align:center;
  }
  .main-footer .footer-navbar .footer-navbar-segment.social-media-links{
    justify-content:center;
  }
  .main-footer .footer-navbar .footer-navbar-segment.quick-links{
    margin-top:20px;
  }
  .cards-container{
    max-width:447px;
    padding:60px 0 50px;
    grid-template-columns: repeat(2,1fr);
  }
  .cards-container .card-block {
    min-height:356px;
  }
  .alphabet-landing-container .sidebar{
    position:absolute;
    z-index:9999;
    height:100%;
    left:-214px;
    transition:all 0.3s linear;
  }
  .alphabet-landing-container .sidebar .sidebar-container .mobile-sidebar-trigger{
    display:flex;
  }
  .alphabet-landing-container  .category-cards-container{
    padding: 93px 70px 100px;
  }
  .alphabet-landing-container  h2,
  .alphabet-landing-container  h3{
    left:0;
    text-align:center;
  }
  .phonetics-tab-wrap .phonetics-tab{
    padding:10px;
    font-size: 1.6rem;
  }
  .example-details-container .example-number-block span, .example-details-container .example-description-block span{
    font-size:1.6rem;
  }
  .example-details-container{
    margin-top:42px;
  }
  .example-details-container.type2{
    margin-top:80px;
  }
  .example-details-container .example-deatil-image-wrap .example-image-container{
    max-width:unset;
  }
  .example-details-container .example-deatil-image-wrap .quantity-image-container{
    margin-right:20px;
  }
  .example-details-container .example-deatil-image-wrap{
    height: auto;
  }
  .example-cards-container .example-cards-wrap{
    max-width:auto;
  }
  .alphabet-landing-container  .category-cards-container
  {
    grid-template-columns: repeat(1,1fr);
  }
  .alphabet-landing-container .category-cards-container a{
    font-size:2rem;
    max-width:500px;
  }
  .about-us-content {
    padding: 50px 20px;
  }
  .about-us-content h2{
    margin: 0 auto 10px;
  }
  .about-us-content .about-us-section {
    margin-bottom: 30px;
  }
  .message-us-block {
    min-height: 220px;
  }
  .phonetics-tab-wrap{
    padding: 150px 36px 34px;
  }
  .coderedcms-formpage h1{
    font-size:3rem;
  }
  .coderedcms-alphabetexamplespage .phonetics-tab-wrap,
  .coderedcms-umlautexamplespage .phonetics-tab-wrap,
  .coderedcms-eszettexamplespage .phonetics-tab-wrap,
  .coderedcms-diphthongexamplespage .phonetics-tab-wrap,
  .coderedcms-numberdetailpage .phonetics-tab-wrap,
  .coderedcms-colourdetailpage .phonetics-tab-wrap,
  .coderedcms-monthdetailpage .phonetics-tab-wrap 
  {
    padding: 60px 36px 34px;
  }
  .data-container .back-btn {
    top: 12px;
    right: 0;
  }
  .navbar-brand img {
    height: 40px;
  }
  .alphabet-landing-container h2{
    font-size:2.6rem;
  }
  .alphabet-landing-container .sidebar .sidebar-container .mobile-sidebar-trigger{
    top:-28px;
  }
  .example-details-container .example-deatil-image-wrap .example-image-container img{
    width:100%;
    max-width:300px;
    height:auto;
  }
  .compare-grid{
    grid-template-columns:repeat(1,1fr);
  }
  .ui-breadcrumb{
    top:17px;
    left:0;
  }
  .coderedcms-alphabetexamplespage .ui-breadcrumb,
  .coderedcms-umlautexamplespage .ui-breadcrumb,
  .coderedcms-eszettexamplespage .ui-breadcrumb,
  .coderedcms-diphthongexamplespage .ui-breadcrumb,
  .coderedcms-numberdetailpage .ui-breadcrumb,
  .coderedcms-colourdetailpage .ui-breadcrumb,
  .coderedcms-monthdetailpage .ui-breadcrumb,
  .coderedcms-alphabetdetailpage .ui-breadcrumb,
  .coderedcms-diphthongdetailpage .ui-breadcrumb,
  .coderedcms-umlautdetailpage .ui-breadcrumb,
  .coderedcms-eszettdetailpage .ui-breadcrumb{
    top:45px;
  }
  .coderedcms-alphabetexamplespage .alphabet-landing-container h3,
  .coderedcms-umlautexamplespage .alphabet-landing-container h3,
  .coderedcms-eszettexamplespage .alphabet-landing-container h3,
  .coderedcms-diphthongexamplespage .alphabet-landing-container h3,
  .coderedcms-numberdetailpage .alphabet-landing-container h3,
  .coderedcms-colourdetailpage .alphabet-landing-container h3,
  .coderedcms-monthdetailpage .alphabet-landing-container h3,
  .coderedcms-alphabetdetailpage .alphabet-landing-container h3,
  .coderedcms-diphthongdetailpage .alphabet-landing-container h3,
  .coderedcms-umlautdetailpage .alphabet-landing-container h3,
  .coderedcms-eszettdetailpage .alphabet-landing-container h3{
    top:116px;
  }
  .coderedcms-alphabetexamplespage .alphabet-landing-container h2,
  .coderedcms-umlautexamplespage .alphabet-landing-container h2,
  .coderedcms-eszettexamplespage .alphabet-landing-container h2,
  .coderedcms-diphthongexamplespage .alphabet-landing-container h2,
  .coderedcms-numberdetailpage .alphabet-landing-container h2,
  .coderedcms-colourdetailpage .alphabet-landing-container h2,
  .coderedcms-monthdetailpage .alphabet-landing-container h2,
  .coderedcms-alphabetdetailpage .alphabet-landing-container h2,
  .coderedcms-diphthongdetailpage .alphabet-landing-container h2,
  .coderedcms-umlautdetailpage .alphabet-landing-container h2,
  .coderedcms-eszettdetailpage .alphabet-landing-container h2{
    top:78px;
  }
  .coderedcms-numberdetailpage .alphabet-landing-container .phonetics-tab-wrap,
  .coderedcms-colourdetailpage .alphabet-landing-container .phonetics-tab-wrap,
  .coderedcms-monthdetailpage .alphabet-landing-container .phonetics-tab-wrap,
  .coderedcms-alphabetdetailpage .alphabet-landing-container .phonetics-tab-wrap,
  .coderedcms-diphthongdetailpage .alphabet-landing-container .phonetics-tab-wrap,
  .coderedcms-umlautdetailpage .alphabet-landing-container .phonetics-tab-wrap,
  .coderedcms-eszettdetailpage .alphabet-landing-container .phonetics-tab-wrap{
    padding: 135px 36px 34px;
  }
  .author-wrap{
    flex-direction:column;
  }
  .author-wrap .author-photo-container.desk{
    display:none;
  }
  .author-wrap .author-photo-container.mob{
    display:block;
  }
  .container-creative-works-detail .creative-work {
    padding:0 10px;
    margin-top:10px;
    margin-bottom:10px;
  }
  .creative-work .author-photo-container.mob{
    display:block;
  }
  .creative-work .author-photo-container.desk{
    display:none;
  }
  .container-creative-works-detail .ui-breadcrumb{
    margin:auto 5px;
    margin-top:30px;
  }
  .quotes-container .card{
    display:flex;
    flex-direction:column;  
  }
  .quotes-container .card-body{
    margin-top: 20px;
    padding-left: 0;
  }
  .quotes-container{
    padding:15px 0;
  }
  .quotes-container .card-body .card-text p{
    font-size: 16px;
  }
  .creative-work .title{
    text-align:center;
  }
  .creative-work .author-name{
    text-align:center;
  }
  .creative-work .author-photo-container.mob{
    text-align:center;
  }
  .creative-work .read-more, .creative-work .read-more:active, .creative-work .read-more:focus{
    margin:auto;
    margin-top: 5px;
  }
  .filter-wrap{
    justify-content:center;
  }
}
@media(max-width:479px){
  .page-banner{
    height:400px;
  }
  .page-banner h2{
    font-size: 3rem;
    margin-bottom:15px;
  }
  .page-banner h3 {
    font-size: 2.2rem;
    margin-bottom:10px;
  }
  .page-banner h4 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .page-banner .explore-btn{
    padding: 15px 18px;
  }
  .logobar-inner .logo-text{
    font-size:1.8rem;
  }
  .logobar-inner .logo-text span{
    font-size:2rem;
  }
  .alphabet-landing-container  .category-cards-container
  {
    grid-template-columns: repeat(1,1fr);
  }
  .alphabet-landing-container .example-cards-container {
    grid-template-columns: repeat(1,auto);
  }
  .phonetics-tab-wrap{
    padding: 95px 10px 22px;
  }
  .alphabet-landing-container .example-cards-container{
    display: block;
    text-align: center;
  }
  .example-cards-container .example-cards-wrap{
    text-align: center;
    margin: auto;
    margin-bottom:40px;
  }
  .cards-container{
    max-width:300px;
    grid-template-columns: repeat(1,1fr);
  }
  .cards-container .card-block .card-title{
    font-size:1.8rem;
  }
  .example-details-container .example-deatil-image-wrap{
    flex-direction: column;
    height:auto;
  }
  .example-details-container .example-deatil-image-wrap .quantity-image-container{
    margin-right:20px;
    height:auto;
    max-width:unset;
    margin:0 auto 15px;
  } 

  .alphabet-landing-container .example-cards-container{
    max-width:300px;
    margin:auto;
  }
  .example-cards-container .example-cards-wrap{
    max-width:auto;
  }
  .alphabet-landing-container .category-cards-container a{
    font-size:1.8rem;
  }
  .alphabet-landing-container  .category-cards-container
  {
    grid-template-columns: repeat(1,1fr);
  }
  .example-details-container .example-deatil-image-wrap .example-image-container {
    max-width: unset;
    margin:auto;
  }
  .example-details-container .speaker-icon-wrap{
    margin:30px auto 10px;
  }
  .example-details-container .example-description-block{
    margin-bottom:0;
  }
  .alphabet-landing-container h2{
    font-size:2.6rem;
    line-height:2.6rem;
  }
  .alphabet-landing-container .sidebar .sidebar-container .mobile-sidebar-trigger{
    top: -36px;
    padding:3px 11px;
  }
  .example-details-container {
    margin-top: 10px;
  }
  .example-details-container.type2 {
    margin-top: 23px;
  }
  .alphabet-landing-container h3{
    top: 80px;
  }
  .example-details-container .example-title{
    font-size: 1.8rem;
    margin: 0 auto 20px;
  }
  .about-us-content {
    padding: 20px;
  }
  .about-us-content .about-us-section {
    margin-bottom: 10px;
  }
  .about-us-content h2{
    font-size: 2.6rem;
  }
  .message-us-block {
    min-height: 148px;
  }
  .coderedcms-formpage h1{
    font-size:2.6rem;
  }
  .coderedcms-alphabetexamplespage .phonetics-tab-wrap,
  .coderedcms-umlautexamplespage .phonetics-tab-wrap,
  .coderedcms-eszettexamplespage .phonetics-tab-wrap,
  .coderedcms-diphthongexamplespage .phonetics-tab-wrap,
  .coderedcms-numberdetailpage .phonetics-tab-wrap,
  .coderedcms-colourdetailpage .phonetics-tab-wrap,
  .coderedcms-monthdetailpage .phonetics-tab-wrap 
  {
    padding: 105px 36px 34px;
  }
  .data-container .back-btn {
    top: 4px;
    right: 0;
    padding:3px 11px;
    font-size:1.4rem;
  }
  .alphabet-landing-container h2{
    font-size:2.2rem;
    top:54px;
  }
  .ui-breadcrumb{
    top:33px;
    background-color:#D3D3D3;
    left:0;
    padding:3px 11px;
  }
  .ui-breadcrumb a{
    font-size:1.4rem;
  }
  .ui-breadcrumb a, .ui-breadcrumb a:hover, .ui-breadcrumb a:active, .ui-breadcrumb a:focus{
    color:var(--primary-color);
  }
  .ui-breadcrumb span.divider{
    color:var(--sprimary-color);
  }
  .ui-breadcrumb span.last-link{
    color:var(--primary-color);
  }
  .coderedcms-alphabetexamplespage .ui-breadcrumb,
  .coderedcms-umlautexamplespage .ui-breadcrumb,
  .coderedcms-eszettexamplespage .ui-breadcrumb,
  .coderedcms-diphthongexamplespage .ui-breadcrumb,
  .coderedcms-numberdetailpage .ui-breadcrumb,
  .coderedcms-colourdetailpage .ui-breadcrumb,
  .coderedcms-monthdetailpage .ui-breadcrumb,
  .coderedcms-alphabetdetailpage .ui-breadcrumb,
  .coderedcms-diphthongdetailpage .ui-breadcrumb,
  .coderedcms-umlautdetailpage .ui-breadcrumb,
  .coderedcms-eszettdetailpage .ui-breadcrumb{
    top:31px;
  }
  .coderedcms-alphabetexamplespage .alphabet-landing-container h3,
  .coderedcms-umlautexamplespage .alphabet-landing-container h3,
  .coderedcms-eszettexamplespage .alphabet-landing-container h3,
  .coderedcms-diphthongexamplespage .alphabet-landing-container h3,
  .coderedcms-numberdetailpage .alphabet-landing-container h3,
  .coderedcms-colourdetailpage .alphabet-landing-container h3,
  .coderedcms-monthdetailpage .alphabet-landing-container h3,
  .coderedcms-alphabetdetailpage .alphabet-landing-container h3,
  .coderedcms-diphthongdetailpage .alphabet-landing-container h3,
  .coderedcms-umlautdetailpage .alphabet-landing-container h3,
  .coderedcms-eszettdetailpage .alphabet-landing-container h3{
    top:92px;
  }
  .coderedcms-alphabetexamplespage .alphabet-landing-container h2,
  .coderedcms-umlautexamplespage .alphabet-landing-container h2,
  .coderedcms-eszettexamplespage .alphabet-landing-container h2,
  .coderedcms-diphthongexamplespage .alphabet-landing-container h2,
  .coderedcms-numberdetailpage .alphabet-landing-container h2,
  .coderedcms-colourdetailpage .alphabet-landing-container h2,
  .coderedcms-monthdetailpage .alphabet-landing-container h2,
  .coderedcms-alphabetdetailpage .alphabet-landing-container h2,
  .coderedcms-diphthongdetailpage .alphabet-landing-container h2,
  .coderedcms-umlautdetailpage .alphabet-landing-container h2,
  .coderedcms-eszettdetailpage .alphabet-landing-container h2{
    top:68px;
  }
  .coderedcms-alphabetexamplespage .alphabet-landing-container .phonetics-tab-wrap,
  .coderedcms-umlautexamplespage .alphabet-landing-container .phonetics-tab-wrap,
  .coderedcms-eszettexamplespage .alphabet-landing-container .phonetics-tab-wrap,
  .coderedcms-diphthongexamplespage .alphabet-landing-container .phonetics-tab-wrap,
  .coderedcms-numberdetailpage .alphabet-landing-container .phonetics-tab-wrap,
  .coderedcms-colourdetailpage .alphabet-landing-container .phonetics-tab-wrap,
  .coderedcms-monthdetailpage .alphabet-landing-container .phonetics-tab-wrap,
  .coderedcms-alphabetdetailpage .alphabet-landing-container .phonetics-tab-wrap,
  .coderedcms-diphthongdetailpage .alphabet-landing-container .phonetics-tab-wrap,
  .coderedcms-umlautdetailpage .alphabet-landing-container .phonetics-tab-wrap,
  .coderedcms-eszettdetailpage .alphabet-landing-container .phonetics-tab-wrap{
    padding: 110px 36px 34px;
  }
  .alphabet-landing-container .category-cards-container {
    padding: 71px 70px 100px;
  }
  .creative-work .title{
    font-size:18px;
    margin-bottom:2px;
  }
  .creative-work .author-name{
    font-size:16px;
  }
  .container-creative-works-detail{
    padding-bottom:0;
  }
  .ui-breadcrumb span.last-link{
    font-size:1.3rem;
  }
  .ui-breadcrumb a{
    font-size:1.3rem; 
  }
}
@media(max-width:399px){
  .page-banner {
    height: 390px;
  }
  .page-banner h2{
    font-size: 2.6rem;
  }
  .page-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .page-banner h4 {
    margin-top: 10px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-size: 1.2rem;
  }
  .phonetics-tab-wrap .phonetics-tab {
    font-size: 1.4rem;
    padding:10px 5px;
  }
  .phonetics-tab span.item-count{
    background-color: transparent;
    margin-left: 5px;
    width:auto;
    height:auto;
    color:var(--secondary-color);
    font-size:1.4rem;
  }
  .phonetics-tab span.item-count:before{
    content:"("
  }
  .phonetics-tab span.item-count:after{
    content:")"
  }
}
/* Media query ends */

/* Styles for print */
@media print {
  footer, aside, form {
      display: none;
  }
  .alphabet-landing-container .sidebar{
    display:none;
  }
  .coderedcms-alphabetexamplespage .data-container .back-btn, .coderedcms-umlautexamplespage .data-container .back-btn, .coderedcms-eszettexamplespage .data-container .back-btn, .coderedcms-diphthongexamplespage .data-container .back-btn, .coderedcms-numberdetailpage .data-container .back-btn, .coderedcms-colourdetailpage .data-container .back-btn, .coderedcms-monthdetailpage .data-container .back-btn{
    display:none;
  }
  .phonetics-tab-wrap .phonetics-tab {
    padding: 15px 26px;
    font-family: 'source_sans_probold';
    background-color: #7f7f7f !important;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    text-align: center;
    border-bottom: 1px solid var(--primary-color);
    transition: all 0.2s linear;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .phonetics-tab-wrap .phonetics-tab.active {
    background-color: #000 !important;
    color:rgb(203, 181, 139);
    border-right: none;
  }
}

/* Translations page */
.translations-container-inner-wrap{
  flex-direction:column !important;
  padding:0 !important;
}
.translation-content-block-wrapper{
  display:block;
  flex-direction:row;
  width:100%;
}
.translation-content-block-wrapper:after{
  content: "";
  clear: both;
  display: table;
}
.translation-content-block-wrapper:not(:last-child){
  border-bottom: 1px solid rgb(203, 181, 139);
}
.translation-content-block-wrapper:first-child{
  border-bottom: 1px solid rgb(203, 181, 139);
}
.translation-content-block-wrapper .left{
  border-right: 1px solid rgb(203, 181, 139);
}
.translation-content-block-wrapper .left,
.translation-content-block-wrapper .right
{
  width:50%;
  flex:0 0 50%;
  padding:5px 10px;
  display:block;
  float:left;
  height:100%;
}
.translation-content-block-wrapper-title .left,
.translation-content-block-wrapper-title .right
{
  padding:23px;
}
.translation-content-block-wrapper .author-wrap{
  display:flex;
  align-items:center;
}
.translation-content-block-wrapper .content-text{
  line-height:26px;
  font-family:"AnjaliOLdLipi";
}
.container-creative-works-detail.mal .translation-content-block-wrapper .left .content-text{
  font-family: "Rachana";
  font-size:18px;
}
.container-creative-works-detail.mal .translation-content-block-wrapper .right .content-text{
  font-family:"source_sans_proregular";
}
.container-creative-works-detail.mal .creative-work .author-details .title,
.container-creative-works-detail.mal .creative-work .author-details .author-name
{
  font-family:"AnjaliOLdLipi";
}
.container-creative-works-detail.mal .creative-work .left .author-details .title,
.container-creative-works-detail.mal .creative-work .left .author-details .author-name
{
  font-family:"Rachana";
}
.translation-content-block-wrapper .content-text span{
  word-break:break-all;
  line-height:21px;
}
.container.my-5{
  display:none;
}
.creative-work .title.content-title{
  margin-bottom:10px;
}
@media(max-width:767px){
  .translation-content-block-wrapper{
    flex-direction:column;
    display:block;
  }
  .translation-content-block-wrapper .left, 
  .translation-content-block-wrapper .right{
    width:100%;
    flex:0 0 100%;
    display:block;
    height:auto;
  }
  .translation-content-block-wrapper .left {
    border-right:none;
    border-bottom: 1px solid rgb(203, 181, 139);
  }
  .creative-work .author-photo-container{
    margin-right:0;
  }
}
.glossary-title{
  border-bottom: 1px solid rgb(203, 181, 139);
  margin-bottom:0;
  padding: 25px 10px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
.container-creative-works-detail.mal .translation-content-block-wrapper.glossary-wrapper .left{
  padding:8px 10px 0;
}
/* Inter cultural articles */

.container-intercultural-articles .creative-work .creative-work-inner-container{
  min-height:unset;
  border:none;
}
.container-intercultural-articles .creative-work{
  margin-top:0;
}
.container-intercultural-articles .creative-work .l-side .author-details{
  display:flex;
  flex-direction:row; 
  justify-content:space-between;
}
.container-intercultural-articles .creative-work .l-side .author-details .left-content a,
.container-intercultural-articles .creative-work .l-side .author-details .left-content a:hover,
.container-intercultural-articles .creative-work .l-side .author-details .left-content a:active,
.container-intercultural-articles .creative-work .l-side .author-details .left-content a:focus
{
  text-decoration:none;
  font-family: "source_sans_proregular";
  font-size: 16px;
  color: #000;
  line-height: 18px;
}
.container-intercultural-articles .creative-work .author-name{
  font-family: "source_sans_proregular";
  font-size: 16px;
  color: #000;
  line-height: 18px;
}
.container-intercultural-articles .creative-work .title{
  font-family: "source_sans_proregular";
  font-size: 16px;
  color: #000;
  line-height: 18px;
}
.container-intercultural-articles .creative-work .index{
  font-family: "source_sans_proregular";
  font-size: 16px;
  color: #000;
  line-height: 18px;
}
.container-intercultural-articles .left-content,
.container-intercultural-articles .left-content table
{
  width:100%;
}
.container-intercultural-articles .left-content table th,
.container-intercultural-articles .left-content table td
{
  padding:12px;
}
.container-intercultural-articles .left-content table th{
  background-color: #e9ecef;
}
.container-intercultural-articles .left-content table td{
  border-bottom: 1px solid rgb(203, 181, 139);
}
.container-intercultural-articles .breadcrumb{
  background-color:transparent;
  padding:0 32px;
} 
.container-intercultural-articles .breadcrumb a{
  margin-right:5px;
}
.container-intercultural-articles .breadcrumb a:hover,
.container-intercultural-articles .breadcrumb a:active,
.container-intercultural-articles .breadcrumb a:focus
{
  text-decoration:none;
}
.container-intercultural-articles .breadcrumb span{
  margin-left:5px;
}
.container-intercultural-articles h1{
  text-align:center;
  font-family: 'source_sans_probold';
}
/* Translations page content break fix */
.creative-work .content p{
  word-break: break-all;
}
.book-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/*button style in accomplishment page */
.buy-now{
  background-color: black;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

/* style for home page banner */
.col-md-12{
  padding:0;
}

@media only screen and (max-width: 600px) {

  .dropdown-component .dropdown-language-list {
    height: 200px;
    overflow-y: scroll;
  }
}