/* Fonts */
:root {
	--default-font: "Poppins",  sans-serif;
	--heading-font: "Raleway",  sans-serif;
	--nav-font: "Poppins",  sans-serif;
  }
  
  /* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
  :root { 
	--background-color: #FFF1EA; /* Background color for the entire website, including individual sections */
	--default-color: #000000; /* Default color used for the majority of the text content across the entire website */
	--heading-color: #B8272D; /* Color for headings, subheadings and title throughout the website */
	--accent-color: #ffa071; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
	--surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
	--contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  }
  
  /* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
  :root {
	--nav-color: #000000;  /* The default color of the main navmenu links */
	--nav-hover-color: #ffa071; /* Applied to main navmenu links when they are hovered over or active */
	--nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
	--nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
	--nav-dropdown-color: #060606; /* Used for navigation links of the dropdown items in the navigation menu. */
	--nav-dropdown-hover-color: #ffa071; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  }
  
  /* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
  
  .light-background {
	--background-color: #f9f9f9;
	--surface-color: #B8272D;
  }
  
  .dark-background {
	--background-color: #B8272D;
	--default-color: #FFF1EA;
	--heading-color: #FFF1EA;
	--surface-color: #B8272D;
	--contrast-color: #B8272D;
  }
  .faq-background {
	--background-color: #779c92;
	--default-color: #FFF1EA;
	--heading-color: #ffd5a5;
	--surface-color: #FFF1EA;
	--contrast-color: #FFF1EA;
  }
  /* Smooth scroll */
  :root {
	scroll-behavior: smooth;
  }
  
  /*--------------------------------------------------------------
  # General Styling & Shared Classes
  --------------------------------------------------------------*/
  body {
	color: var(--default-color);
	background-color: var(--background-color);
	font-family: var(--default-font);
  }
  
  a {
	color: var(--accent-color);
	text-decoration: none;
	transition: 0.3s;
  }
  
  a:hover {
	color: color-mix(in srgb, var(--accent-color), transparent 25%);
	text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
	color: var(--heading-color);
	font-family: var(--heading-font);
  }
  
  /*--------------------------------------------------------------
  # IMPORTANTE-BORRAR
  --------------------------------------------------------------*/
  .hide {
	display: none;
  }
  
  /*--------------------------------------------------------------
  # Global Header
  --------------------------------------------------------------*/
  .header {
	--background-color: rgba(255, 255, 255, 0);
	--heading-color: #ffffff;
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 20px 0;
	transition: all 0.5s;
	z-index: 997;
  }
  
  .header .logo {
	line-height: 1;
  }
  
  .header .logo img {
	max-height: 50px;
	margin-right: 8px;
  }
  
  .header .logo h1 {
	font-size: 30px;
	margin: 0;
	font-weight: 700;
	color: var(--heading-color);
  }
  
  .scrolled .header {
	box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  }
  
  /* Global Header on Scroll
  ------------------------------*/
  .scrolled .header {
	--background-color: rgba(255, 241, 234, 0.8);
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Navmenu - Desktop */
  @media (min-width: 1200px) {
	.navmenu {
	  padding: 0;
	}
  
	.navmenu ul {
	  margin: 0;
	  padding: 0;
	  display: flex;
	  list-style: none;
	  align-items: center;
	}
  
	.navmenu li {
	  position: relative;
	  margin-left: 5px;
	}
  
	.navmenu a,
	.navmenu a:focus {
	  color: var(--nav-color);
	  padding: 8px 20px;
	  font-size: 12px;
	  text-transform: uppercase;
	  font-family: var(--nav-font);
	  font-weight: 400;
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  white-space: nowrap;
	  transition: 0.3s;
	  border-radius: 50px;
	}
  
	.navmenu a i,
	.navmenu a:focus i {
	  font-size: 12px;
	  line-height: 0;
	  margin-left: 5px;
	  transition: 0.3s;
	}
  
	.navmenu li:hover>a,
	.navmenu .active,
	.navmenu .active:focus {
	  background-color: var(--nav-hover-color);
	}
  
	.navmenu .dropdown ul {
	  margin: 0;
	  padding: 10px 0;
	  background: var(--nav-dropdown-background-color);
	  display: block;
	  position: absolute;
	  visibility: hidden;
	  left: 0;
	  top: 130%;
	  opacity: 0;
	  transition: 0.3s;
	  border-radius: 15px;
	  z-index: 99;
	  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}
  
	.navmenu .dropdown ul li {
	  min-width: 200px;
	  margin-left: 0;
	}
  
	.navmenu .dropdown ul a {
	  padding: 10px 20px;
	  font-size: 15px;
	  text-transform: none;
	  color: var(--nav-dropdown-color);
	}
  
	.navmenu .dropdown ul a i {
	  font-size: 12px;
	}
  
	.navmenu .dropdown ul a:hover,
	.navmenu .dropdown ul .active:hover,
	.navmenu .dropdown ul li:hover>a {
	  background-color: transparent;
	  color: var(--nav-hover-color);
	}
  
	.navmenu .dropdown:hover>ul {
	  opacity: 1;
	  top: 105%;
	  visibility: visible;
	}
  
	.navmenu .dropdown .dropdown ul {
	  top: 0;
	  left: -90%;
	  visibility: hidden;
	}
  
	.navmenu .dropdown .dropdown:hover>ul {
	  opacity: 1;
	  top: 0;
	  left: -100%;
	  visibility: visible;
	}
  }
  
  /* Navmenu - Mobile */
  @media (max-width: 1199px) {
	.mobile-nav-toggle {
	  color: var(--nav-color);
	  font-size: 28px;
	  line-height: 0;
	  margin-right: 10px;
	  cursor: pointer;
	  transition: color 0.3s;
	}
  
	.navmenu {
	  padding: 0;
	  z-index: 9997;
	}
  
	.navmenu ul {
	  display: none;
	  list-style: none;
	  position: absolute;
	  inset: 60px 20px 20px 20px;
	  padding: 10px 0;
	  margin: 0;
	  border-radius: 6px;
	  background-color: var(--nav-mobile-background-color);
	  overflow-y: auto;
	  transition: 0.3s;
	  z-index: 9998;
	  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}
  
	.navmenu a,
	.navmenu a:focus {
	  color: var(--nav-dropdown-color);
	  padding: 10px 20px;
	  font-family: var(--nav-font);
	  font-size: 17px;
	  font-weight: 500;
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  white-space: nowrap;
	  transition: 0.3s;
	}
  
	.navmenu a i,
	.navmenu a:focus i {
	  font-size: 12px;
	  line-height: 0;
	  margin-left: 5px;
	  width: 30px;
	  height: 30px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  border-radius: 50%;
	  transition: 0.3s;
	  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	}
  
	.navmenu a i:hover,
	.navmenu a:focus i:hover {
	  background-color: var(--accent-color);
	  color: var(--contrast-color);
	}
  
	.navmenu a:hover,
	.navmenu .active,
	.navmenu .active:focus {
	  color: var(--nav-dropdown-hover-color);
	}
  
	.navmenu .active i,
	.navmenu .active:focus i {
	  background-color: var(--accent-color);
	  color: var(--contrast-color);
	  transform: rotate(180deg);
	}
  
	.navmenu .dropdown ul {
	  position: static;
	  display: none;
	  z-index: 99;
	  padding: 10px 0;
	  margin: 10px 20px;
	  background-color: var(--nav-dropdown-background-color);
	  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
	  box-shadow: none;
	  transition: all 0.5s ease-in-out;
	}
  
	.navmenu .dropdown ul ul {
	  background-color: rgba(33, 37, 41, 0.1);
	}
  
	.navmenu .dropdown>.dropdown-active {
	  display: block;
	  background-color: rgba(33, 37, 41, 0.03);
	}
  
	.mobile-nav-active {
	  overflow: hidden;
	}
  
	.mobile-nav-active .mobile-nav-toggle {
	  color: #fff;
	  position: absolute;
	  font-size: 32px;
	  top: 15px;
	  right: 15px;
	  margin-right: 0;
	  z-index: 9999;
	}
  
	.mobile-nav-active .navmenu {
	  position: fixed;
	  overflow: hidden;
	  inset: 0;
	  background: rgba(33, 37, 41, 0.8);
	  transition: 0.3s;
	}
  
	.mobile-nav-active .navmenu>ul {
	  display: block;
	}
  }
  
  /*--------------------------------------------------------------
  # Global Footer
  --------------------------------------------------------------*/
  .footer {
	color: var(--default-color);
	background-color: var(--background-color);
	font-size: 15px;
	text-align: left;
	padding: 30px 0;
	position: relative;
  }
  
  .footer h4 {
	font-size: 24px;
	font-weight: 700;
	position: relative;
	padding: 0;
	margin: 0 0 15px 0;
	text-align: center;
  }
  .footer a {
	color:#FFF;
  }
  .footer a:hover {
	opacity: .7;
  }
  .footer ul {
	list-style-type: none;
  }
  .footer .social-links {
	margin: 0 0 30px 0;
  }
  
  .footer .social-links a {
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	line-height: 1;
	margin: 0 5px;
	text-align: center;
	transition: 0.3s;
  }
  .footer .social-links a:hover {
	opacity: .8;
	text-decoration: none;
  }
  
  /*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
  #preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	overflow: hidden;
	background-color: var(--background-color);
	transition: all 0.6s ease-out;
	width: 100%;
	height: 100vh;
  }
  
  #preloader:before,
  #preloader:after {
	content: "";
	position: absolute;
	border: 4px solid var(--accent-color);
	border-radius: 50%;
	animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  }
  
  #preloader:after {
	animation-delay: -0.5s;
  }
  
  @keyframes animate-preloader {
	0% {
	  width: 10px;
	  height: 10px;
	  top: calc(50% - 5px);
	  left: calc(50% - 5px);
	  opacity: 1;
	}
  
	100% {
	  width: 72px;
	  height: 72px;
	  top: calc(50% - 36px);
	  left: calc(50% - 36px);
	  opacity: 0;
	}
  }
  
  /*--------------------------------------------------------------
  # Scroll Top Button
  --------------------------------------------------------------*/
  .scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: -15px;
	z-index: 99999;
	background-color: var(--accent-color);
	width: 44px;
	height: 44px;
	border-radius: 50px;
	transition: all 0.4s;
  }
  
  .scroll-top i {
	font-size: 24px;
	color: var(--contrast-color);
	line-height: 0;
  }
  
  .scroll-top:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
	color: var(--contrast-color);
  }
  
  .scroll-top.active {
	visibility: visible;
	opacity: 1;
	bottom: 15px;
  }
  
  /*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
  @media screen and (max-width: 768px) {
	[data-aos-delay] {
	  transition-delay: 0 !important;
	}
  }
  
  /*--------------------------------------------------------------
  # Global Page Titles & Breadcrumbs
  --------------------------------------------------------------*/
  .page-title {
	color: var(--default-color);
	background-color: var(--background-color);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 160px 0 80px 0;
	text-align: center;
	position: relative;
  }
  
  .page-title:before {
	content: "";
	background-color: color-mix(in srgb, var(--background-color), transparent 50%);
	position: absolute;
	inset: 0;
  }
  
  .page-title h1 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 10px;
  }
  
  .page-title .breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	justify-content: center;
	padding: 0;
	margin: 0;
	font-size: 16px;
	font-weight: 400;
  }
  
  .page-title .breadcrumbs ol li+li {
	padding-left: 10px;
  }
  
  .page-title .breadcrumbs ol li+li::before {
	content: "/";
	display: inline-block;
	padding-right: 10px;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
  }
  
  /*--------------------------------------------------------------
  # Global Sections
  --------------------------------------------------------------*/
  section,
  .section {
	color: var(--default-color);
	background-color: var(--background-color);
	scroll-margin-top: 77px;
	overflow: clip;
  }
  .section.home {
	padding: 50px 0 30px 0;
  }
  .section.contenidos {
	padding: 100px 0 30px 0;
  }
  .container.section {
	padding: 30px 0;
  }
  
  /*--------------------------------------------------------------
  # Global Section Titles
  --------------------------------------------------------------*/
  .section-title {
	padding-bottom: 60px;
	position: relative;
  }
  
  .section-title h2 {
	font-size: 14px;
	font-weight: 500;
	padding: 0;
	line-height: 1px;
	margin: 0;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	position: relative;
  }
  
  .section-title h2::after {
	content: "";
	width: 120px;
	height: 1px;
	display: inline-block;
	background: var(--accent-color);
	margin: 4px 10px;
  }
  
  .section-title p {
	color: var(--heading-color);
	margin: 0;
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: var(--heading-font);
  }
  
  /*--------------------------------------------------------------
  # Home Section
  --------------------------------------------------------------*/
  
  .home .read-more {
	background: var(--accent-color);
	color: var(--contrast-color);
	font-family: var(--heading-font);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	padding: 10px 28px;
	border-radius: 25px;
	transition: 0.3s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
  }
  
  .home .read-more i {
	font-size: 14px;
	margin-left: 5px;
	line-height: 0;
	transition: 0.3s;
  }
  
  .home .read-more:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
  }
  
  .home .read-more:hover i {
	transform: translate(5px, 0);
  }
  /*--------------------------------------------------------------
  # About Section
  --------------------------------------------------------------*/
  .about {
	background: #B8272D url("../img/nosotros/bg-1.png") top left no-repeat;
	background-size: contain;
  }
  .about p {
	font-size: 14px;
  }
  .about ul {
	list-style: none;
	padding: 0;
  }
  .about ul li {
	padding-bottom: 5px;
	display: flex;
	align-items: center;
	font-size: 14px;
  }
  
  .about ul i {
	font-size: 16px;
	padding-right: 4px;
	color: #ffffff;
  }
  /*--------------------------------------------------------------
  # GENERAL ENGLISH
  --------------------------------------------------------------*/
  .general-eng h1 {
	font-size: 46px;
	font-weight: 700;
  }
  .general-eng h3 {
	font-size: 14px;
	font-weight: 700;
	padding-top: 30px;
  }
  .general-eng p {
	margin-bottom: 20px;
	font-size: 14px;
  }
  .general-eng .read-more {
	background: var(--accent-color);
	color: var(--contrast-color);
	font-family: var(--heading-font);
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 10px 28px;
	border-radius: 25px;
	transition: 0.3s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
  }
  
  .general-eng .read-more i {
	font-size: 14px;
	margin-left: 5px;
	line-height: 0;
	transition: 0.3s;
  }
  
  .general-eng .read-more:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
  }
  
  .general-eng .read-more:hover i {
	transform: translate(5px, 0);
  }
  /*--------------------------------------------------------------
  # Pampa Azul
  --------------------------------------------------------------*/
  .pampa.section {
	background-color: #fd8c00;
	padding-top: 0;
  }
  .pampa p {
	font-size: 13px;
  }
  .pampa-waves {
	display: block;
	width: 100%;
	height: 100px;
	position: relative;
  }
  
  .path-0{
	animation:pathAnim-0 4s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
  }
  @keyframes pathAnim-0{
	0%{
	  d: path("M 0,400 L 0,75 C 47.261215932914055,80.51984215069676 94.52243186582811,86.03968430139352 148,80 C 201.4775681341719,73.96031569860648 261.1714884696016,56.361104945122705 316,53 C 370.8285115303984,49.638895054877295 420.79161425576524,60.515895918115675 472,63 C 523.2083857442348,65.48410408188433 575.6620545073375,59.5753113824146 628,72 C 680.3379454926625,84.4246886175854 732.5601677148848,115.18285855222592 791,110 C 849.4398322851152,104.81714144777408 914.0972746331236,63.69325440868171 973,57 C 1031.9027253668764,50.30674559131829 1085.0507337526205,78.04412381304722 1140,93 C 1194.9492662473795,107.95587618695278 1251.6997903563943,110.13025033912935 1302,105 C 1352.3002096436057,99.86974966087065 1396.1501048218029,87.43487483043532 1440,75 L 1440,400 L 0,400 Z");
	}
	25%{
	  d: path("M 0,400 L 0,75 C 67.36579109631273,73.84587495375509 134.73158219262547,72.69174990751017 189,65 C 243.26841780737453,57.30825009248982 284.4394623258108,43.0788753237144 335,55 C 385.5605376741892,66.9211246762856 445.51056850413124,104.99274879763225 492,109 C 538.4894314958688,113.00725120236775 571.5182636576643,82.95012948575656 627,66 C 682.4817363423357,49.04987051424344 760.4163768652114,45.206733259341476 813,41 C 865.5836231347886,36.793266740658524 892.8162288814898,32.222937476877526 944,47 C 995.1837711185102,61.777062523122474 1070.3187076088295,95.90151683314836 1125,93 C 1179.6812923911705,90.09848316685164 1213.9089406831915,50.17099519052904 1263,41 C 1312.0910593168085,31.829004809470963 1376.0455296584041,53.41450240473548 1440,75 L 1440,400 L 0,400 Z");
	}
	50%{
	  d: path("M 0,400 L 0,75 C 43.00170181280059,83.68195831791837 86.00340362560118,92.36391663583673 142,87 C 197.99659637439882,81.63608336416327 266.9880873103958,62.226291774571465 325,59 C 383.0119126896042,55.773708225428535 430.04424713281537,68.73091626587741 478,81 C 525.9557528671846,93.26908373412259 574.8349241583427,104.85004316191886 635,107 C 695.1650758416573,109.14995683808114 766.6160562338143,101.86891108644714 822,98 C 877.3839437661857,94.13108891355286 916.7008509064001,93.6743124922925 970,94 C 1023.2991490935999,94.3256875077075 1090.5805401405846,95.43383894438279 1137,95 C 1183.4194598594154,94.56616105561721 1208.9769885312617,92.59033173017635 1256,89 C 1303.0230114687383,85.40966826982365 1371.5115057343692,80.20483413491183 1440,75 L 1440,400 L 0,400 Z");
	}
	75%{
	  d: path("M 0,400 L 0,75 C 60.54265630780614,85.89964237267233 121.08531261561228,96.79928474534468 166,101 C 210.91468738438772,105.20071525465532 240.20140584535704,102.70250339129363 295,100 C 349.79859415464296,97.29749660870637 430.1090640029597,94.39070168948084 495,82 C 559.8909359970403,69.60929831051916 609.3623381428042,47.73468985078308 656,55 C 702.6376618571958,62.26531014921692 746.4415834258232,98.67053890738686 790,105 C 833.5584165741768,111.32946109261314 876.8713281539029,87.5831545196695 941,84 C 1005.1286718460971,80.4168454803305 1090.0731039585646,96.99684301393513 1145,102 C 1199.9268960414354,107.00315698606487 1224.8362560118385,100.42947342458996 1269,94 C 1313.1637439881615,87.57052657541004 1376.5818719940808,81.28526328770502 1440,75 L 1440,400 L 0,400 Z");
	}
	100%{
	  d: path("M 0,400 L 0,75 C 47.261215932914055,80.51984215069676 94.52243186582811,86.03968430139352 148,80 C 201.4775681341719,73.96031569860648 261.1714884696016,56.361104945122705 316,53 C 370.8285115303984,49.638895054877295 420.79161425576524,60.515895918115675 472,63 C 523.2083857442348,65.48410408188433 575.6620545073375,59.5753113824146 628,72 C 680.3379454926625,84.4246886175854 732.5601677148848,115.18285855222592 791,110 C 849.4398322851152,104.81714144777408 914.0972746331236,63.69325440868171 973,57 C 1031.9027253668764,50.30674559131829 1085.0507337526205,78.04412381304722 1140,93 C 1194.9492662473795,107.95587618695278 1251.6997903563943,110.13025033912935 1302,105 C 1352.3002096436057,99.86974966087065 1396.1501048218029,87.43487483043532 1440,75 L 1440,400 L 0,400 Z");
	}
  }
  .path-1{
	animation:pathAnim-1 4s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
  }
  @keyframes pathAnim-1{
	0%{
	  d: path("M 0,400 L 0,175 C 58.87369589345171,164.41719077568132 117.74739178690342,153.83438155136267 168,155 C 218.25260821309658,156.16561844863733 259.884128745838,169.07966457023062 311,178 C 362.115871254162,186.92033542976938 422.71609322974473,191.84696016771488 488,197 C 553.2839067702553,202.15303983228512 623.2514983351832,207.53249475890985 666,200 C 708.7485016648168,192.46750524109015 724.2779134295226,172.0230607966457 773,164 C 821.7220865704774,155.9769392033543 903.6368479467259,160.37526205450735 959,163 C 1014.3631520532741,165.62473794549265 1043.1746947835738,166.47589098532495 1094,169 C 1144.8253052164262,171.52410901467505 1217.664372918979,175.72117400419287 1279,177 C 1340.335627081021,178.27882599580713 1390.1678135405105,176.63941299790355 1440,175 L 1440,400 L 0,400 Z");
	}
	25%{
	  d: path("M 0,400 L 0,175 C 65.47238870390925,183.2877296830682 130.9447774078185,191.57545936613639 177,184 C 223.0552225921815,176.42454063386361 249.69327907263533,152.98589221852265 291,149 C 332.30672092736467,145.01410778147735 388.28210630164017,160.4809717597731 460,160 C 531.7178936983598,159.5190282402269 619.1782957208042,143.090220742385 668,151 C 716.8217042791958,158.909779257615 727.0047108151435,191.1581452706869 773,193 C 818.9952891848565,194.8418547293131 900.8028610186213,166.27719817486744 960,165 C 1019.1971389813787,163.72280182513256 1055.783845110371,189.73306202984335 1099,203 C 1142.216154889629,216.26693797015665 1192.061758539894,216.79055370575904 1250,210 C 1307.938241460106,203.20944629424096 1373.969120730053,189.10472314712047 1440,175 L 1440,400 L 0,400 Z");
	}
	50%{
	  d: path("M 0,400 L 0,175 C 50.238451103711924,164.70640029596746 100.47690220742385,154.41280059193488 152,153 C 203.52309779257615,151.58719940806512 256.3308422740165,159.05519792822787 308,173 C 359.6691577259835,186.94480207177213 410.1997286965101,207.36640769515355 471,209 C 531.8002713034899,210.63359230484645 602.8702429399433,193.47917129115797 659,179 C 715.1297570600567,164.52082870884203 756.3192995437169,152.71690714021457 799,152 C 841.6807004562831,151.28309285978543 885.8525588851894,161.6532001479837 948,174 C 1010.1474411148106,186.3467998520163 1090.2704649155257,200.67029226785056 1146,208 C 1201.7295350844743,215.32970773214944 1233.065581452707,215.66563078061412 1278,209 C 1322.934418547293,202.33436921938588 1381.4672092736464,188.66718460969292 1440,175 L 1440,400 L 0,400 Z");
	}
	75%{
	  d: path("M 0,400 L 0,175 C 62.36142557651992,185.26168454803303 124.72285115303984,195.5233690960661 182,201 C 239.27714884696016,206.4766309039339 291.4700209643605,207.16820816376867 335,190 C 378.5299790356395,172.83179183623133 413.39706498951784,137.8037982488593 469,142 C 524.6029350104822,146.1962017511407 600.941719077568,189.61659884079418 660,205 C 719.058280922432,220.38340115920582 760.8360587002098,207.729806387964 811,202 C 861.1639412997902,196.270193612036 919.7140461215934,197.46417560734986 968,203 C 1016.2859538784066,208.53582439265014 1054.307756813417,218.4134911826366 1102,206 C 1149.692243186583,193.5865088173634 1207.054926624738,158.88185966210384 1265,150 C 1322.945073375262,141.11814033789616 1381.472536687631,158.0590701689481 1440,175 L 1440,400 L 0,400 Z");
	}
	100%{
	  d: path("M 0,400 L 0,175 C 58.87369589345171,164.41719077568132 117.74739178690342,153.83438155136267 168,155 C 218.25260821309658,156.16561844863733 259.884128745838,169.07966457023062 311,178 C 362.115871254162,186.92033542976938 422.71609322974473,191.84696016771488 488,197 C 553.2839067702553,202.15303983228512 623.2514983351832,207.53249475890985 666,200 C 708.7485016648168,192.46750524109015 724.2779134295226,172.0230607966457 773,164 C 821.7220865704774,155.9769392033543 903.6368479467259,160.37526205450735 959,163 C 1014.3631520532741,165.62473794549265 1043.1746947835738,166.47589098532495 1094,169 C 1144.8253052164262,171.52410901467505 1217.664372918979,175.72117400419287 1279,177 C 1340.335627081021,178.27882599580713 1390.1678135405105,176.63941299790355 1440,175 L 1440,400 L 0,400 Z");
	}
  }
  .path-2{
	animation:pathAnim-2 4s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
  }
  @keyframes pathAnim-2{
	0%{
	  d: path("M 0,400 L 0,275 C 39.72938710075225,283.3589591811567 79.4587742015045,291.71791836231347 138,288 C 196.5412257984955,284.28208163768653 273.8942902947342,268.48728573190283 333,258 C 392.1057097052658,247.51271426809717 432.96406461955854,242.3329387100752 472,253 C 511.03593538044146,263.6670612899248 548.2494512270316,290.18095942779627 612,292 C 675.7505487729684,293.81904057220373 766.0381304723148,270.94322357873966 826,272 C 885.9618695276852,273.05677642126034 915.5980268837094,298.046146257245 969,299 C 1022.4019731162906,299.953853742755 1099.5697619928476,276.87219139228023 1147,271 C 1194.4302380071524,265.12780860771977 1212.1229251449006,276.46508817363423 1256,280 C 1299.8770748550994,283.53491182636577 1369.9385374275498,279.26745591318286 1440,275 L 1440,400 L 0,400 Z");
	}
	25%{
	  d: path("M 0,400 L 0,275 C 39.57834504871131,265.8762609446294 79.15669009742263,256.75252188925884 141,263 C 202.84330990257737,269.24747811074116 286.9515846590208,290.8661733875941 345,297 C 403.0484153409792,303.1338266124059 435.0369712664941,293.78278456036503 473,283 C 510.9630287335059,272.21721543963497 554.900530275003,260.0026883709458 620,260 C 685.099469724997,259.9973116290542 771.3609076334938,272.2064619558515 825,277 C 878.6390923665062,281.7935380441485 899.6558391910222,279.171463805648 952,271 C 1004.3441608089778,262.828536194352 1088.0157356024172,249.10768282155635 1144,257 C 1199.9842643975828,264.89231717844365 1228.2812183993094,294.3978049081268 1273,301 C 1317.7187816006906,307.6021950918732 1378.8593908003454,291.3010975459366 1440,275 L 1440,400 L 0,400 Z");
	}
	50%{
	  d: path("M 0,400 L 0,275 C 53.085904550499436,274.0868417807375 106.17180910099887,273.1736835614749 162,275 C 217.82819089900113,276.8263164385251 276.3986681465039,281.3921075348378 337,288 C 397.6013318534961,294.6078924651622 460.23351831298555,303.2578862991738 509,305 C 557.7664816870144,306.7421137008262 592.6672586015537,301.57634726846715 647,284 C 701.3327413984463,266.42365273153285 775.0974472807991,236.43672462695773 822,238 C 868.9025527192009,239.56327537304227 888.9429522752498,272.676754223702 930,281 C 971.0570477247502,289.323245776298 1033.130743618202,272.85625847823405 1090,267 C 1146.869256381798,261.14374152176595 1198.5340732519423,265.8982118633617 1256,269 C 1313.4659267480577,272.1017881366383 1376.7329633740287,273.55089406831917 1440,275 L 1440,400 L 0,400 Z");
	}
	75%{
	  d: path("M 0,400 L 0,275 C 44.342385004316185,269.5273646565545 88.68477000863237,264.0547293131089 136,266 C 183.31522999136763,267.9452706868911 233.60330496978662,277.3084474041189 294,280 C 354.3966950302134,282.6915525958811 424.902010112221,278.7114810704156 485,274 C 545.097989887779,269.2885189295844 594.7886545813294,263.84562831421886 650,254 C 705.2113454186706,244.15437168578117 765.9433715624615,229.9060056727093 811,237 C 856.0566284375385,244.0939943272907 885.4378591688247,272.5303489949439 937,277 C 988.5621408311753,281.4696510050561 1062.3051917622397,261.9725983475151 1129,268 C 1195.6948082377603,274.0274016524849 1255.341373782217,305.5792576149957 1306,311 C 1356.658626217783,316.4207423850043 1398.3293131088915,295.7103711925022 1440,275 L 1440,400 L 0,400 Z");
	}
	100%{
	  d: path("M 0,400 L 0,275 C 39.72938710075225,283.3589591811567 79.4587742015045,291.71791836231347 138,288 C 196.5412257984955,284.28208163768653 273.8942902947342,268.48728573190283 333,258 C 392.1057097052658,247.51271426809717 432.96406461955854,242.3329387100752 472,253 C 511.03593538044146,263.6670612899248 548.2494512270316,290.18095942779627 612,292 C 675.7505487729684,293.81904057220373 766.0381304723148,270.94322357873966 826,272 C 885.9618695276852,273.05677642126034 915.5980268837094,298.046146257245 969,299 C 1022.4019731162906,299.953853742755 1099.5697619928476,276.87219139228023 1147,271 C 1194.4302380071524,265.12780860771977 1212.1229251449006,276.46508817363423 1256,280 C 1299.8770748550994,283.53491182636577 1369.9385374275498,279.26745591318286 1440,275 L 1440,400 L 0,400 Z");
	}
  }
  /*--------------------------------------------------------------
  # Testimonials Section
  --------------------------------------------------------------*/
  .testimonials {
	background-color: #779C92;
  }
  .testimonials .testimonial-item {
  /*   background-color: var(--surface-color); */
  /*  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
	box-sizing: content-box;
	padding: 10px;
	margin: 10px;
	position: relative;
	height: 100%;
  }
  
  .testimonials .testimonial-item .testimonial-img {
	width: 90px;
	border-radius: 50px;
	margin-right: 15px;
  }
  
  .testimonials .testimonial-item h3 {
	font-size: 18px;
	font-weight: 400;
	margin: 10px 0 5px 0;
	color:#fff;
  }
  
  .testimonials .testimonial-item h4 {
	font-size: 16px;
	color: color-mix(in srgb, var(--default-color), transparent 60%);
	margin: 0;
	font-weight: 600;
  }
  .testimonials .swiper-wrapper {
	height: auto;
  }
  
  .testimonials .swiper-pagination {
	margin-top: 20px;
	position: relative;
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: color-mix(in srgb, var(--default-color), transparent 85%);
	opacity: 1;
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #FFF;
  }
  
  @media (max-width: 767px) {
	.testimonials .testimonial-wrap {
	  padding-left: 0;
	}
  
	.testimonials .testimonial-item {
	  padding: 30px;
	  margin: 15px;
	}
  
	.testimonials .testimonial-item .testimonial-img {
	  position: static;
	  left: auto;
	}
  }
  
  /*--------------------------------------------------------------
  # Faq Section
  --------------------------------------------------------------*/
  
  .faqs .faqs-item {
	  box-sizing: content-box;
	  padding: 10px;
	  margin: 10px;
	  position: relative;
	  height: 100%;
	  font-size: 14px;
	}
	
	.faqs .faqs-item .faqs-img {
	  width: 100%;
	  border-radius: 20px;
	  margin-right: 15px;
	}
	.faqs .faqs-item h2 {
	  font-size: 28px;
	  color: #ffd5a5;
	  margin: 0;
	  font-weight: 700;
	  margin-bottom: 20px;
	}
	.faqs .swiper-wrapper {
	  height: auto;
	}
	
	.faqs .swiper-pagination {
	  margin-top: 20px;
	  position: relative;
	}
	
	.faqs .swiper-pagination .swiper-pagination-bullet {
	  width: 12px;
	  height: 12px;
	  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
	  opacity: 1;
	}
	
	.faqs .swiper-pagination .swiper-pagination-bullet-active {
	  background-color: #FFF;
	}
	
	@media (max-width: 767px) {
	  .faqs .faqs-wrap {
		padding-left: 0;
	  }
	
	  .faqs .faqs-item {
		padding: 30px;
		margin: 15px;
	  }
	
	  .faqs .faqs-item .faqs-img {
		position: static;
		left: auto;
	  }
	}
  
  /*--------------------------------------------------------------
  # General English Section
  --------------------------------------------------------------*/
  
  .genglish .genglish-item {
	box-sizing: content-box;
	padding: 10px;
	margin: 10px;
	position: relative;
	height: 100%;
	font-size: 14px;
  }
  
  .genglish .genglish-item .genglish-img {
	width: 100%;
	border-radius: 20px;
	margin-right: 15px;
  }
  .genglish .genglish-item h2 {
	font-size: 28px;
	color: #B8272D;
	margin: 0;
	font-weight: 700;
	margin-bottom: 20px;
  }
  .genglish .swiper-wrapper {
	height: auto;
  }
  
  .genglish .swiper-pagination {
	margin-top: 20px;
	position: relative;
  }
  
  .genglish .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: #B8272D;
	opacity: 1;
  }
  
  .genglish .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #ffa071;
  }
  
  @media (max-width: 767px) {
	.faqs .faqs-wrap {
	  padding-left: 0;
	}
  
	.faqs .faqs-item {
	  padding: 30px;
	  margin: 15px;
	}
  
	.faqs .faqs-item .faqs-img {
	  position: static;
	  left: auto;
	}
  }
  
  
  /*--------------------------------------------------------------
  # Blog Posts Section
  --------------------------------------------------------------*/
  .blog-posts article {
	background-color: var(--surface-color);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	padding: 30px;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
  }
  
  .blog-posts .post-img {
	max-height: 240px;
	margin: -30px -30px 15px -30px;
	overflow: hidden;
  }
  
  .blog-posts .post-category {
	font-size: 16px;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	margin-bottom: 10px;
  }
  
  .blog-posts .title {
	font-size: 20px;
	font-weight: 700;
	padding: 0;
	margin: 0 0 20px 0;
  }
  
  .blog-posts .title a {
	color: var(--heading-color);
	transition: 0.3s;
  }
  
  .blog-posts .title a:hover {
	color: var(--accent-color);
  }
  
  .blog-posts .post-author-img {
	width: 50px;
	border-radius: 50%;
	margin-right: 15px;
  }
  
  .blog-posts .post-author {
	font-weight: 600;
	margin-bottom: 5px;
  }
  
  .blog-posts .post-date {
	font-size: 14px;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	margin-bottom: 0;
  }
  
  /*--------------------------------------------------------------
  # Blog Pagination Section
  --------------------------------------------------------------*/
  .blog-pagination {
	padding-top: 0;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
  }
  
  .blog-pagination ul {
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
  }
  
  .blog-pagination li {
	margin: 0 5px;
	transition: 0.3s;
  }
  
  .blog-pagination li a {
	color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--accent-color);
  }
  
  .blog-pagination li a.active,
  .blog-pagination li a:hover {
	background: var(--accent-color);
	color: var(--contrast-color);
  }
  
  .blog-pagination li a.active a,
  .blog-pagination li a:hover a {
	color: var(--contrast-color);
  }
  
  /*--------------------------------------------------------------
  # Blog Details Section
  --------------------------------------------------------------*/
  .blog-details {
	padding-bottom: 30px;
  }
  
  .blog-details .article {
	background-color: var(--surface-color);
	padding: 30px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  .blog-details .post-img {
	margin: -30px -30px 20px -30px;
	overflow: hidden;
  }
  
  .blog-details .title {
	color: var(--heading-color);
	font-size: 28px;
	font-weight: 700;
	padding: 0;
	margin: 30px 0;
  }
  
  .blog-details .content {
	margin-top: 20px;
  }
  
  .blog-details .content h3 {
	font-size: 22px;
	margin-top: 30px;
	font-weight: bold;
  }
  
  .blog-details .content blockquote {
	overflow: hidden;
	background-color: color-mix(in srgb, var(--default-color), transparent 95%);
	padding: 60px;
	position: relative;
	text-align: center;
	margin: 20px 0;
  }
  
  .blog-details .content blockquote p {
	color: var(--default-color);
	line-height: 1.6;
	margin-bottom: 0;
	font-style: italic;
	font-weight: 500;
	font-size: 22px;
  }
  
  .blog-details .content blockquote:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background-color: var(--accent-color);
	margin-top: 20px;
	margin-bottom: 20px;
  }
  
  .blog-details .meta-top {
	margin-top: 20px;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
  }
  
  .blog-details .meta-top ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	align-items: center;
	padding: 0;
	margin: 0;
  }
  
  .blog-details .meta-top ul li+li {
	padding-left: 20px;
  }
  
  .blog-details .meta-top i {
	font-size: 16px;
	margin-right: 8px;
	line-height: 0;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
  }
  
  .blog-details .meta-top a {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	font-size: 14px;
	display: inline-block;
	line-height: 1;
  }
  
  .blog-details .meta-bottom {
	padding-top: 10px;
	border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  
  .blog-details .meta-bottom i {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	display: inline;
  }
  
  .blog-details .meta-bottom a {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	transition: 0.3s;
  }
  
  .blog-details .meta-bottom a:hover {
	color: var(--accent-color);
  }
  
  .blog-details .meta-bottom .cats {
	list-style: none;
	display: inline;
	padding: 0 20px 0 0;
	font-size: 14px;
  }
  
  .blog-details .meta-bottom .cats li {
	display: inline-block;
  }
  
  .blog-details .meta-bottom .tags {
	list-style: none;
	display: inline;
	padding: 0;
	font-size: 14px;
  }
  
  .blog-details .meta-bottom .tags li {
	display: inline-block;
  }
  
  .blog-details .meta-bottom .tags li+li::before {
	padding-right: 6px;
	color: var(--default-color);
	content: ",";
  }
  
  .blog-details .meta-bottom .share {
	font-size: 16px;
  }
  
  .blog-details .meta-bottom .share i {
	padding-left: 5px;
  }
  
  /*--------------------------------------------------------------
  # Blog Comments Section
  --------------------------------------------------------------*/
  .blog-comments {
	padding: 10px 0;
  }
  
  .blog-comments .comments-count {
	font-weight: bold;
  }
  
  .blog-comments .comment {
	margin-top: 30px;
	position: relative;
  }
  
  .blog-comments .comment .comment-img {
	margin-right: 14px;
  }
  
  .blog-comments .comment .comment-img img {
	width: 60px;
  }
  
  .blog-comments .comment h5 {
	font-size: 16px;
	margin-bottom: 2px;
  }
  
  .blog-comments .comment h5 a {
	font-weight: bold;
	color: var(--default-color);
	transition: 0.3s;
  }
  
  .blog-comments .comment h5 a:hover {
	color: var(--accent-color);
  }
  
  .blog-comments .comment h5 .reply {
	padding-left: 10px;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
  }
  
  .blog-comments .comment h5 .reply i {
	font-size: 20px;
  }
  
  .blog-comments .comment time {
	display: block;
	font-size: 14px;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	margin-bottom: 5px;
  }
  
  .blog-comments .comment.comment-reply {
	padding-left: 40px;
  }
  
  /*--------------------------------------------------------------
  # Comment Form Section
  --------------------------------------------------------------*/
  .comment-form {
	padding-top: 10px;
  }
  
  .comment-form form {
	background-color: var(--surface-color);
	margin-top: 30px;
	padding: 30px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  .comment-form form h4 {
	font-weight: bold;
	font-size: 22px;
  }
  
  .comment-form form p {
	font-size: 14px;
  }
  
  .comment-form form input {
	background-color: var(--surface-color);
	color: var(--default-color);
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
	font-size: 14px;
	border-radius: 4px;
	padding: 10px 10px;
  }
  
  .comment-form form input:focus {
	color: var(--default-color);
	background-color: var(--surface-color);
	box-shadow: none;
	border-color: var(--accent-color);
  }
  
  .comment-form form input::placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
  }
  
  .comment-form form textarea {
	background-color: var(--surface-color);
	color: var(--default-color);
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
	border-radius: 4px;
	padding: 10px 10px;
	font-size: 14px;
	height: 120px;
  }
  
  .comment-form form textarea:focus {
	color: var(--default-color);
	box-shadow: none;
	border-color: var(--accent-color);
	background-color: var(--surface-color);
  }
  
  .comment-form form textarea::placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
  }
  
  .comment-form form .form-group {
	margin-bottom: 25px;
  }
  
  .comment-form form .btn-primary {
	border-radius: 4px;
	padding: 10px 20px;
	border: 0;
	background-color: var(--accent-color);
	color: var(--contrast-color);
  }
  
  .comment-form form .btn-primary:hover {
	color: var(--contrast-color);
	background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  }
  
  /*--------------------------------------------------------------
  # Widgets
  --------------------------------------------------------------*/
  .widgets-container {
	margin: 60px 0 30px 0;
  }
  
  .widget-title {
	color: var(--heading-color);
	font-size: 20px;
	font-weight: 600;
	padding: 0 0 0 10px;
	margin: 0 0 20px 0;
	border-left: 4px solid var(--accent-color);
  }
  
  .widget-item {
	margin-bottom: 30px;
	background-color: color-mix(in srgb, var(--default-color), transparent 98%);
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
	padding: 30px;
	border-radius: 5px;
  }
  
  .widget-item:last-child {
	margin-bottom: 0;
  }
  
  .blog-author-widget img {
	max-width: 160px;
  }
  
  .blog-author-widget h4 {
	font-weight: 600;
	font-size: 24px;
	margin: 15px 0 0 0;
	padding: 0;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
  }
  
  .blog-author-widget .social-links {
	margin: 5px 0;
  }
  
  .blog-author-widget .social-links a {
	color: color-mix(in srgb, var(--default-color), transparent 60%);
	margin: 0 3px;
	font-size: 18px;
  }
  
  .blog-author-widget .social-links a:hover {
	color: var(--accent-color);
  }
  
  .blog-author-widget p {
	font-style: italic;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	margin: 10px 0 0 0;
  }
  
  .search-widget form {
	background: var(--background-color);
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
	padding: 3px 10px;
	position: relative;
	border-radius: 50px;
	transition: 0.3s;
  }
  
  .search-widget form input[type=text] {
	border: 0;
	padding: 4px 10px;
	border-radius: 4px;
	width: calc(100% - 40px);
	background-color: var(--background-color);
	color: var(--default-color);
  }
  
  .search-widget form input[type=text]:focus {
	outline: none;
  }
  
  .search-widget form button {
	background: none;
	color: var(--default-color);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	border: 0;
	font-size: 16px;
	padding: 0 16px;
	transition: 0.3s;
	line-height: 0;
  }
  
  .search-widget form button i {
	line-height: 0;
  }
  
  .search-widget form button:hover {
	color: var(--accent-color);
  }
  
  .search-widget form:is(:focus-within) {
	border-color: var(--accent-color);
  }
  
  .categories-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
  }
  
  .categories-widget ul li {
	padding-bottom: 10px;
  }
  
  .categories-widget ul li:last-child {
	padding-bottom: 0;
  }
  
  .categories-widget ul a {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	transition: 0.3s;
  }
  
  .categories-widget ul a:hover {
	color: var(--accent-color);
  }
  
  .categories-widget ul a span {
	padding-left: 5px;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
	font-size: 14px;
  }
  
  .recent-posts-widget .post-item {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
  }
  
  .recent-posts-widget .post-item:last-child {
	margin-bottom: 0;
  }
  
  .recent-posts-widget .post-item h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
  }
  
  .recent-posts-widget .post-item h4 a {
	color: var(--default-color);
	transition: 0.3s;
  }
  
  .recent-posts-widget .post-item h4 a:hover {
	color: var(--accent-color);
  }
  
  .recent-posts-widget .post-item time {
	display: block;
	font-style: italic;
	font-size: 14px;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
  }
  
  .tags-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
  }
  
  .tags-widget ul li {
	display: inline-block;
  }
  
  .tags-widget ul a {
	background-color: color-mix(in srgb, var(--default-color), transparent 94%);
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	border-radius: 50px;
	font-size: 14px;
	padding: 5px 15px;
	margin: 0 6px 8px 0;
	display: inline-block;
	transition: 0.3s;
  }
  
  .tags-widget ul a:hover {
	background: var(--accent-color);
	color: var(--contrast-color);
  }
  
  .tags-widget ul a span {
	padding-left: 5px;
	color: color-mix(in srgb, var(--default-color), transparent 60%);
	font-size: 14px;
  }
.learn-press-courses .course-instructor-category {
	display:none!important;
}