.blockleft{
  width: 75%; 
  float:left;
}



.blockright{
  width: 25%; 
  float:right;
  text-orientation: sideways;
  background-color: #ffffff;
}
.shadowbox_respones{
  width: 22em;
  background-color: #eeeeeecb;
  padding: 5px;
}
.shadowbox_respones he1{
  font-size: 15px;
  color: rgb(168, 168, 168);
}

.h3_ze{
  font-size: 13px;
  color: rgb(168, 168, 168);
}

hr-line {
	margin: 20px 0;
	padding: 0;
	height: 0;
	border: none;
	border-top: 1px solid #000000;
}

.hr-line_full {
	margin: 30px 20px 20px;
    border: 0;
    border-top: 1px solid #c9c7c7;
}

section {
  display: absolute;
  padding: 5px;
  
  overflow-x: hidden;
	margin-left: 285px;
}

/* Google Font Import - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", Georgia, 'Times New Roman', Times, serif;
}

:root {
  /* ===== Colors ===== */
  --body-color: #ffffff;
  --sidebar-color: #e7e7e7;
  --primary-color: #8f8f8f;
  --primary-color-light: #f6f5ff;
  --toggle-color: #ddd;
  --text-color: #414141;

  /* ====== Transition ====== */
  --tran-03: all 0.2s ease;
  --tran-03: all 0.3s ease;
  --tran-04: all 0.3s ease;
  --tran-05: all 0.3s ease;
}

body {
  min-height: 100vh;
  background-color: var(--body-color);
  transition: var(--tran-05);
}

::selection {
  background-color: var(--primary-color);
  color: #fff;
}

body.dark {
  --body-color: #18191a;
  --sidebar-color: #242526;
  --primary-color: #3a3b3c;
  --primary-color-light: #3a3b3c;
  --toggle-color: #fff;
  --text-color: #ccc;
}

/* ===== Sidebar ===== */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 280px;
  padding: 10px 14px;
  background: var(--sidebar-color);
  transition: var(--tran-05);
  z-index: 100;
}
.sidebar.close {
  width: 88px;
}

/* ===== Reusable code - Here ===== */
.sidebar li {
  height: 50px;
  list-style: none;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.sidebar header .image,
.sidebar .icon {
  min-width: 60px;
  border-radius: 6px;
}

.sidebar .icon {
  min-width: 60px;
  border-radius: 6px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.sidebar .text,
.sidebar .icon {
  color: var(--text-color);
  transition: var(--tran-03);
}

.sidebar .text {
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 1;
}
.sidebar.close .text {
  opacity: 0;
}
/* =========================== */

.sidebar header {
  position: relative;
}

.sidebar header .image-text {
  display: flex;
  align-items: center;
}
.sidebar header .logo-text {
  display: flex;
  flex-direction: column;
}
header .image-text .name {
  margin-top: 15px;
  font-size: 21px;
  font-weight: 600;
}

header .image-text .profession {
  font-size: 16px;
  margin-top: -2px;
  display: block;
}

.sidebar header .image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar header .image img {
  width: 40px;
  border-radius: 6px;
}

.sidebar header .toggle {
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%) rotate(180deg);
  height: 25px;
  width: 25px;
  background-color: var(--primary-color);
  color: var(--sidebar-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: var(--tran-05);
}

body.dark .sidebar header .toggle {
  color: var(--text-color);
}

.sidebar.close .toggle {
  transform: translateY(-50%) rotate(0deg);
}

.sidebar .menu {
  margin-top: 40px;
}

.sidebar li.search-box {
  border-radius: 6px;
  background-color: var(--primary-color-light);
  cursor: pointer;
  transition: var(--tran-05);
}

.sidebar li.search-box input {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--primary-color-light);
  color: var(--text-color);
  border-radius: 6px;
  font-size: 17px;
  font-weight: 500;
  transition: var(--tran-05);
}
.sidebar li a {
  list-style: none;
  height: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  border-radius: 6px;
  text-decoration: none;
  transition: var(--tran-03);
}

.sidebar li a:hover {
  background-color: var(--primary-color);
}
.sidebar li a:hover .icon,
.sidebar li a:hover .text {
  color: var(--sidebar-color);
}
body.dark .sidebar li a:hover .icon,
body.dark .sidebar li a:hover .text {
  color: var(--text-color);
}

.sidebar .menu-bar {
  height: calc(100% - 55px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: scroll;
}
.menu-bar::-webkit-scrollbar {
  display: none;
}
.sidebar .menu-bar .mode {
  border-radius: 6px;
  background-color: var(--primary-color-light);
  position: relative;
  transition: var(--tran-05);
}

.menu-bar .mode .sun-moon {
  height: 50px;
  width: 80px;
}

.mode .sun-moon i {
  position: absolute;
}
.mode .sun-moon i.sun {
  opacity: 0;
}
body.dark .mode .sun-moon i.sun {
  opacity: 1;
}
body.dark .mode .sun-moon i.moon {
  opacity: 0;
}

.menu-bar .bottom-content .toggle-switch {
  position: absolute;
  right: 0;
  height: 100%;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
}
.toggle-switch .switch {
  position: relative;
  height: 22px;
  width: 40px;
  border-radius: 25px;
  background-color: var(--toggle-color);
  transition: var(--tran-05);
}

.switch::before {
  content: "";
  position: absolute;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  background-color: var(--sidebar-color);
  transition: var(--tran-04);
}

body.dark .switch::before {
  left: 20px;
}

.home {
  position: absolute;
  top: 0;
  top: 0;
  left: 250px;
  height: 100vh;
  width: calc(100% - 250px);
  background-color: var(--body-color);
  transition: var(--tran-05);
}
.home .text {
  font-size: 30px;
  font-weight: 500;
  color: var(--text-color);
  padding: 12px 60px;
}

.sidebar.close ~ .home {
  left: 85px;
  height: 100vh;
  width: calc(100% - 78px);
}
body.dark .home .text {
  color: var(--text-color);
}



.button_a{
border: 1px solid #32329f;
color: #32329f;
font-weight: normal;
margin-left: 0.5em;
padding: 4px 8px 4px;
display: inline-block;
-webkit-text-decoration: none;
text-decoration: none;
cursor: pointer;
}
.entry-content li, ul {
  list-style: disc outside none;
margin-left: 12px;
}
li{
  margin: 1em;
}
code{
  background-color: #d6d6d6;
  color: #4536e6;
  padding: 2px;
}
.code1{
  background-color: #d47c34;
  color: #fcfcfc;
  padding: 5px;
  border-radius: 10px
}

.button_52{
  display: flex;
    position: relative;
    color: inherit;
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 10px 30px 10px 10px;
    border-radius: 0;
    background-color: transparent;
    white-space: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0;
    border-bottom: 1px solid #ccc;
    font-size: 12pt;
    padding: 16px;
    font-size: 16px;
    border: none;
    outline: none;
    transition: 0.4s;
  }

.button_1, .button_3, .accordions,.button_11,.button_53,.button_5,.button_51,
 .button_17, .button_31,.button_18, .button_19, .button_25, .button_20, .button_49, .button_46,
 .button_50{
  display: flex;
    position: relative;
    color: inherit;
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 10px 30px 10px 10px;
    border-radius: 0;
    background-color: transparent;
    white-space: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0;
    border-bottom: 1px solid #ccc;
    font-size: 12pt;
    padding: 16px;
    font-size: 16px;
    border: none;
    outline: none;
    transition: 0.4s;
  }


.button_4:hover{
  border-bottom: #000000;
  border-radius: 1px;
}

.dropdown{
  position: relative;
  display: inline-block;
}
.contain3{
  width: 50%;
}
.arrow, .arrows5,.arrows52,.arrows53,.arrows51, .arrowis, .arrows3, .arrowi17, .arrows31, .arrowi18, .arrows32, .arrowi19, .arrowi25, .arrows33, .arrows35, .arrowi20, .arrowi46, .arrows34, .arrows47, .arrows48, .arrowi49, .arrowi50, .arrows55{
  height: 20px;
    width: 20px;
    min-width: 20px;
    vertical-align: middle;
    float: right;
    transition: transform 0.2s ease-out 0s;
    transform: rotate(180deg);
    display:inline-block;
}

.on{
    transform: rotate(1deg);
}

.slider-wrap a {
  position: relative;
    color: #5e3296;
    font-size: 16px;
    text-transform: uppercase;
    background-repeat: no-repeat;
    background-position: 50% 71%;
    display: inline-block;
    min-height: 60px;
    margin-top: -40px;
    
}
.slider-wrap a::after {
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 25px;
  width: 100%;
  text-align: center;
  transition: transform 0.5s linear;
  transform: rotate(180deg);
  content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAOCAYAAADABlfOAAABjklEQVQ4T42Tv0sCYRjHn+cuQyNwcXRztuxuiCAXtyAaAoOQU6fkhJoa6i8oaCv00Ck1kRIaImhrKYiG08jZzdGGClSyu7f3DQzv9L3uHZ8fn/d9vu/3wXQkFzEFoQxAQghQ7IUC+/X6lgEuTzx+JXrbbycIJAOAbRAghUkp/0L7F0cMQkCrNLNZl0xQlvJ5RFDH6psM+kkD8xYI4mFZV4//Aydl7QAIObLVfaAi5S4QMGFLEBpTSg21ygOnJC1BgFRonqpmOZe4Ixf8A2I+UE3DtuQXAVyrNNR7O1iRtBjV8I7GZ605bHlRiP7eklg4DYoezxMdJWgDvAtoRM/13dYonpbPwiYR6SPAb5OsYwyHK9XXvc7f090Uu73coofTWIDCOhDz1o1MdpHB4QP6dFyfmw+dgLImjlUmjcCx3lQo655iagvUaUm4ULZ+vnb3mpI2pnj1ph8KbPLWmQtlIOrhuQExmE+Xx8DPXhRjRT3T4y2GI5Q1bcuFgMf8LgHiKvXx41CYSdX0TJcHZPEfoDimgyVJcMEAAAAASUVORK5CYII=);
}
.slider-wrap a.close::after {
  transform: rotate(0);
}

.arrowss, .arrowss400,.arrowss401, .arrowss1, .arrowss4001,.arrowss4011, .arrowss2, .arrowss4002, .arrowss4012, .arrowss3, .arrowss4003, .arrowss4013, .arrowss4, .arrowss4004, .arrowss4014, .arrowss5, .arrowss45, .arrowss4015 , .arrowss40145, .arrowss40045, .arrowss4005, .arrowss6, .arrowss49, .arrowss4006, .arrowss4016, .arrowss40149, .arrowss40049, .arrowss56{
  height: 20px;
    width: 20px;
    min-width: 20px;
    vertical-align: middle;
    float: left;
    transition: transform 0.2s ease-out 0s;
    transform: rotate(180deg);
    display:inline-block;
}

.arrowssright400{
  height: 20px;
    width: 20px;
    min-width: 20px;
    vertical-align: middle;
    float: left;
    transform: rotateZ(-180deg);
    display:inline-block;
}

.arrows, .arrowws, .arrowi {
    height: 20px;
    width: 20px;
    min-width: 20px;
    vertical-align: middle;
    float: right;
    transition: transform 0.2s ease-out 0s;
    transform: rotateZ(-180deg);
    display:inline-block;
}



.spanGet{
  font-size: 0.929em;
    line-height: 20px;
    background-color: #2F8132;
    color: #ffffff;
    padding: 3px 10px;
    text-transform: uppercase;
    font-family: Montserrat,sans-serif;
    margin: 0;
}
.spanPost{
  font-size: 0.929em;
    line-height: 20px;
    background-color:#186FAF;
    color: #ffffff;
    padding: 3px 10px;
    text-transform: uppercase;
    font-family: Montserrat,sans-serif;
    margin: 0;
}
.span1{
  margin:0 20px ;
}

:not(svg) {
  transform-origin: 0px 0px;
}
svg:not(:root) {
  overflow-clip-margin: content-box;
  overflow: hidden;
}
.span51{
  margin:0 20px ;
}
:not(svg) {
  transform-origin: 0px 0px;
}
svg:not(:root) {
  overflow-clip-margin: content-box;
  overflow: hidden;
}
.sslka, .sslkapos, .panels, .sslka1, .sslkapos53, .sslkapos553, .sslkais, .sslka17, .sslkapos31{
  position: absolute;
  width: 100vh;
    z-index: 100;
    background: rgb(255, 255, 255);
    color: rgb(38, 50, 56);
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.33) 0px 0px 6px;
    overflow: hidden;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    transition: all 0.25s ease 0s;
    visibility: visible;
    padding: 10px;
    font-family: Roboto,sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 3px;
}
.sslkapos5,.sslkapos53{
  position: absolute;
  width: 100vh;
    z-index: 100;
    background: rgb(255, 255, 255);
    color: rgb(38, 50, 56);
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.33) 0px 0px 6px;
    overflow: hidden;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    transition: all 0.25s ease 0s;
    visibility: visible;
    padding: 10px;
    font-family: Roboto,sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 3px;
}

.show {
  display:block;
}
.eRqgPI {
  color: #7c7cbb;
  font-family: Courier,monospace;
  margin-right: 10px;
}
.eRqgPI::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 1px;
  background: #7c7cbb;
}
.eRqgPI::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  background: #7c7cbb;
  height: 7px;
}
.inf200{
  display: block;
  border: 0;
  width: 100%;
  text-align: left;
  padding: 10px;
  border-radius: 2px;
  margin-bottom: 4px;
  line-height: 1.5em;
  cursor: pointer;
  color: #1d8127;
  background-color: rgba(29,129,39,0.07);
}
.inf{
  display: none;
  overflow: hidden;
}
.inf401{
  display: block;
  border: 0;
  width: 100%;
  text-align: left;
  padding: 10px;
  border-radius: 2px;
  margin-bottom: 4px;
  line-height: 1.5em;
  cursor: pointer;
  color: #d41f1c;
  background-color: rgba(212,31,28,0.07);
}
.iyHUa-d::before {
  content: "—";
  font-weight: bold;
  width: 1.5em;
  text-align: center;
  display: inline-block;
  vertical-align: top;
}
.margin{
  margin: 20px;
}
.active{
  transform: rotate(1deg);
}


.ttt{
  display: none;
}
.accordion {
  background-color: rgba(29,129,39,0.07);
  color:#1d8127;
  cursor: pointer;
  padding: 18px;
  width: 60%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}
.accordion400, .accordion401{
  background-color: rgba(129, 29, 29, 0.07);
  color:#811d1d;
  cursor: pointer;
  padding: 18px;
  width: 60%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.accordionRight400 {
  background-color: rgba(252, 110, 110, 0.473);
  color:#811d1d;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}


.panel {
  padding: 0 18px 18px 0;
  display: none;
  overflow: hidden;
}
.blockrightt{
  display: flex;
  flex-direction: column;
}
.blockright{
  display: flex;
  padding-left: 1em;
}
.drop_block{
  display: none;
}

.panelright {
  
  display: none;
  overflow: hidden;
}

.button200{
  background-color: rgba(29,129,39,0.07); /* Green background */
  border: none;
  color: #1d8127;
  padding: 10px 24px; /* Some padding */
  cursor: pointer; /* Pointer/hand icon */
  float: left;
   /* Float the buttons side by side */
}

/*.btn-group button:not(:last-child) {
  border-right: none; /* Prevent double borders */

/* Clear floats (clearfix hack) */
/*.btn-group:after {
  content: "";
  clear: both;
  display: table;
}*/

/* Add a background color on hover */
/*.btn-group button:hover {
  background-color: #3e8e4144;
}*/

.tr200{
  background-color: rgba(29, 129, 39, 0.329);
  padding: 1em;
  
  width: 22em;
}

.tr400{
  background-color: rgba(252, 110, 110, 0.473);
  padding: 1em;
  margin-top: 1em;
  width: 22em;
}

.button200:hover{
  background-color: rgba(8, 172, 22, 0.973);
}
.button200:focus {
  background-color: rgba(8, 172, 22, 0.973);
}
.button200:after {
  background-color: rgba(8, 172, 22, 0.973);
}
.button200:active {
  background-color: rgba(8, 172, 22, 0.973);
}
.button200:focus:before {
  background-color: rgba(252, 110, 110, 0.473);
}
.button400:hover {
  background-color: rgba(252, 110, 110, 0.473);
}
.button400:focus {
  background-color: rgba(252, 110, 110, 0.473);
}
.button400:focus::before {
  background-color: rgba(252, 110, 110, 0.473);
}

.button400 {
  background-color: rgba(129, 29, 29, 0.07); /* Green background */
  border: none;
  color: #811d1d;
  padding: 10px 24px; /* Some padding */
  cursor: pointer; /* Pointer/hand icon */
  float: left; /* Float the buttons side by side */
}

.goo-map1:not(:first-child){display:none}
.goo-map:not(:first-child){display:none;}
.goo-map{display:none;}
.f2h354ff52e-d3k93dd01{
  padding: 25px 0 0 150px;  
}
.cm349d2ld-dj29dj{
  font-size: 15px;
  color: rgb(124, 124, 124);
}

.d342vhsdm2d0{
  background-color: #eeeeee;
  padding: 2px;
  border: 1px solid #969696;
  font-size: 12px;
}
