/* -------------------------------- 

Primary style

-------------------------------- */


html, body {
  /* you need to set this to assign to the main element a min height of 100% */
  height: 100%;
}

/*body {
  font-size: 100%;
  font-family: "Titillium Web", sans-serif;
  color: #4e6361;
  background-color: #f5f4e9;
}

a {
  color: #6cac70;
  text-decoration: none;
}
*/
/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-img-replace {
  /* replace text with a background-image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.overflow-hidden {
  overflow: hidden;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-main-content {
  /* set a min-height and a z-index to be sure that the main element completely covers the lateral menu */
  min-height: 100%;
  position: relative;
  background-color: #fff;
  z-index: 2;
  padding-top: 50px;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
	padding-top: 150px;
	 text-align: center;
}
.cd-main-content.lateral-menu-is-open {
  /* translate to show the lateral menu - all content needs to be put in the .cd-main-content to translate*/
	 -webkit-transform: translateX(-360px);
  -moz-transform: translateX(-360px);
  -ms-transform: translateX(-360px);
  -o-transform: translateX(-360px);
  transform: translateX(-360px);
 /* -webkit-transform: translateX(-260px);
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  transform: translateX(-260px);*/
}
/*@media only screen and (min-width: 768px) {
  .cd-main-content {
    padding-top: 150px;
	  text-align: center;
  }
}*/

header {
  position:fixed;
  top: 0;
  left: 0;
  height: 110px;
  width: 100%;
  background: #fff;
  z-index: 3;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
box-shadow: 0 2px 8px #d1d0d0;
}
header.lateral-menu-is-open {
  /* translate to show the lateral menu */
	 -webkit-transform: translateX(-355px);
  -moz-transform: translateX(-355px);
  -ms-transform: translateX(-355px);
  -o-transform: translateX(-355px);
  transform: translateX(-355px);
 /* -webkit-transform: translateX(-260px);
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  transform: translateX(-260px);*/
}
header.is-fixed {
  position: fixed;
}
@media only screen and (min-width: 768px) {
  header {
    height: 110px;
  }
}

#cd-logo {
  display: block;
  float: left;
  margin: 12px 0 0 20px;
}
#cd-logo img {
  display: block;
}
@media only screen and (min-width: 768px) {
  #cd-logo {
    margin: 22px 0 0 30px;
  }
}

#cd-top-nav {
	background-image: url(../img/z-l.svg), url(../img/z-r.svg), url(../img/z-c.svg);
    background-position:left center, right 5px center, center center;
    background-repeat: no-repeat, no-repeat, repeat-x;
    position: absolute;
    top: 0;
    right: 0px;
    left: 0px;
    height: 100%;
    /*display: none;*/
    background-size:60px, 60px, 4.px;
    /*outline: 2px solid #9eb3bf;
    outline-offset: -10px;*/
}
#cd-top-nav ul {
  height: 100%;
  align-content: center;
}
#cd-top-nav li {
  display: -webkit-box !important;
    /* margin-right: 1em; */
    font-size: 1.2rem;
    align-content: center;
    text-align: center;
    margin: auto;
    -webkit-box-pack: center;
}
#cd-top-nav a {
  display: inline-block;
  padding: .2em .5em 0;
  color: #40697f;
  font-weight: 600;
	text-decoration: none;
	
}
#cd-top-nav a.current {
  background-color: #242e30;
}
.no-touch #cd-top-nav a:hover {
  color: rgba(255, 255, 255, 0.7);
}
@media only screen and (min-width: 768px) {
  #cd-top-nav {
    display: block;
  }
}

#cd-menu-trigger {
  position: absolute;
  right: 0;
  top: 50vh;
  height: 100%;
  width: 50px;
  /*background-color: #64807d;*/
	transition: transform .4s 0s, visibility 0s 0s;
}
#cd-menu-trigger .cd-menu-text {
  height: 100%;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 600;
  display: none;
}
#cd-menu-trigger .cd-menu-icon {
  /* this span is the central line in the menu menu */
  display: inline-block;
  position: absolute;
  left: 10px;
  top: 50%;
  bottom: auto;
  right: 0;
	margin: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: #FFF;
  /* these are the upper and lower lines in the menu menu */
}
#cd-menu-trigger .cd-menu-icon::before, #cd-menu-trigger .cd-menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: inherit;
  left: 0;
}
#cd-menu-trigger .cd-menu-icon::before {
  bottom: 5px;
}
#cd-menu-trigger .cd-menu-icon::after {
  top: 5px;
}
#cd-menu-trigger.is-clicked .cd-menu-icon {
  background-color: rgba(255, 255, 255, 0);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before, #cd-menu-trigger.is-clicked .cd-menu-icon::after {
  background-color: white;
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media only screen and (min-width: 768px) {
  /*#cd-menu-trigger {
    width: 110px;
    padding-left: 1.25em;
  }*/
  #cd-menu-trigger .cd-menu-text {
    display: inline-block;
    line-height: 70px;
  }
  #cd-menu-trigger .cd-menu-icon {
   /* left: auto;
    right: 1.25em;*/
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

#cd-lateral-nav {
  position: fixed;
  height: 100%;
  right: 0;
  top: 0;
  visibility: hidden;
  /* the secondary navigation is covered by the main element */
  z-index: 10;
  width: 360px;
  background-color: #406881;
  overflow-y: auto;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s .4s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s .4s;
  transition: transform .4s 0s, visibility 0s .4s;
  /* this creates the subtle slide in animation of the navigation */
  -webkit-transform: translateX(360px);
  -moz-transform: translateX(360px);
  -ms-transform: translateX(360px);
  -o-transform: translateX(360px);
  transform: translateX(360px);
}
#cd-lateral-nav .cd-navigation {
  margin: 10px 0 16px;
}
#cd-lateral-nav .sub-menu {
  padding: 0 10px;
  display: none;
	line-height: 0px;
}
#cd-lateral-nav a {
  /*display: block;
  line-height: 2em;
  padding: 0 16px 0 32px;*/
  color: #fff;
    text-decoration: none;
	transition: all 0.7s ease-in-out;
	display: inline-block;
}
#cd-lateral-nav a:hover {
	color: #ffe967;
	transition: all 0.7s ease-in-out;
}
#cd-lateral-nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
}

#cd-lateral-nav a:hover::after {
    width: 100%;

	transition: all 0.7s ease-in-out;
	border-bottom: 2px solid #ffe967;
}
#cd-lateral-nav a.current {
  background-color: #3a4a4d;
  color: #FFF;
}
.no-touch #cd-lateral-nav a:hover {
  color: #FFF;
}
@media only screen and (min-width: 768px) {
  #cd-lateral-nav .cd-navigation {
    margin: 20px 0;
  }
}
#cd-lateral-nav.lateral-menu-is-open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s 0s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s 0s;
  transition: transform .4s 0s, visibility 0s 0s;
  /* smooth the scrolling on touch devices - webkit browsers */
  -webkit-overflow-scrolling: touch;
}

/* style menu items which have a submenu  */
#cd-lateral-nav .item-has-children > a {
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
	width: 100%;
	
  /* this is the right arrow to show that the item has a submenu  */
}
#cd-lateral-nav .item-has-children > a:checked {
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
	width: 100%;
	border-bottom: 1px solid #6f8ea0;
    padding-bottom: 10px;
  /* this is the right arrow to show that the item has a submenu  */
}


#cd-lateral-nav .item-has-children > a::after {
  content: '';
  display: block;
  height: 25px;
  width: 25px;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  /*right: 1em;*/
  background: url("../img/cd-arrow.svg") no-repeat center center;
  background-size: 25px 25px;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
	left: 0;
	transition: all 0.7s ease-in-out;
	border: none;
}
#cd-lateral-nav .item-has-children > a.submenu-open::after {
  /*-webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -o-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);*/
	 background: url("../img/cd-arrow2.svg") no-repeat center center;
	transition: all 0.7s ease-in-out;
}

#cd-lateral-nav .socials {
  padding: 0 32px;
}
#cd-lateral-nav .socials:after {
  content: "";
  display: table;
  clear: both;
}
#cd-lateral-nav .socials a {
  height: 32px;
  width: 32px;
  float: left;
  padding: 0;
  background-image: url("../img/cd-socials.svg");
  background-repeat: no-repeat;
  background-size: 128px 64px;
  background-color: #FFF;
  margin-right: .5em;
  border-radius: 0.25em;
}
#cd-lateral-nav .socials a.cd-twitter {
  background-position: 0 0;
}
#cd-lateral-nav .socials a.cd-github {
  background-position: -32px 0;
}
#cd-lateral-nav .socials a.cd-facebook {
  background-position: -64px 0;
}
#cd-lateral-nav .socials a.cd-google {
  background-position: -96px 0;
}
.no-touch #cd-lateral-nav .socials a:hover {
  background-color: #4e6361;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-twitter {
  background-position: 0 -32px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-github {
  background-position: -32px -32px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-facebook {
  background-position: -64px -32px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-google {
  background-position: -96px -32px;
}

/*Start Right Menu*/
.bd-placeholder-img {
        font-size: 1.125rem;
        text-anchor: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
      }

      @media (min-width: 768px) {
        .bd-placeholder-img-lg {
          font-size: 3.5rem;
        }
      }

      .b-example-divider {
        width: 100%;
        height: 3rem;
        background-color: rgba(0, 0, 0, .1);
        border: solid rgba(0, 0, 0, .15);
        border-width: 1px 0;
        box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
      }

      .b-example-vr {
        flex-shrink: 0;
        width: 1.5rem;
        height: 100vh;
      }

      .bi {
        vertical-align: -.125em;
        fill: currentColor;
      }

      .nav-scroller {
        position: relative;
        z-index: 2;
        height: 2.75rem;
        overflow-y: hidden;
      }

      .nav-scroller .nav {
        display: flex;
        flex-wrap: nowrap;
        padding-bottom: 1rem;
        margin-top: -1px;
        overflow-x: auto;
        text-align: center;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
      }

      .btn-bd-primary {
        --bd-violet-bg: #712cf9;
        --bd-violet-rgb: 112.520718, 44.062154, 249.437846;

        --bs-btn-font-weight: 600;
        --bs-btn-color: var(--bs-white);
        --bs-btn-bg: var(--bd-violet-bg);
        --bs-btn-border-color: var(--bd-violet-bg);
        --bs-btn-hover-color: var(--bs-white);
        --bs-btn-hover-bg: #6528e0;
        --bs-btn-hover-border-color: #6528e0;
        --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
        --bs-btn-active-color: var(--bs-btn-hover-color);
        --bs-btn-active-bg: #5a23c8;
        --bs-btn-active-border-color: #5a23c8;
      }

      .bd-mode-toggle {
        z-index: 1500;
      }

      .bd-mode-toggle .dropdown-menu .active .bi {
        display: block !important;
      }
		  
		  
		  
		  
		  .parent_wrapper{
		height: 250px;
    	width: 250px;
    	position: relative;
    	background-color: white;
	}
.open-close-mnu {
	  /* position: absolute; */
    /* background-color: #406881; */
    /* width: inherit; */
    height: inherit;
    /* border-radius: 50px 0 0 50px; */
    /*z-index: 1;*/
    /* transform: translateY(0px); */
    /* right: 0px; */
    /* transition: transform .3s ease-out; */
    background-image: url(../img/open-close-mnu.svg);
    /* background-size: contain; */
    background-repeat: no-repeat;
    /* background-size: 40px; */
    background-position: right;
	}
	.tab-indicator {
	    position: absolute;
	    background-color: #406881;
	    width: 50px;
	    height: 60px;
	    border-radius: 50px 0 0 50px;
	    z-index: 1;
	    transform: translateY(0px);
	    right: 0px;
	    /*transition: transform .3s ease-out;*/
	}
	.tab-indicator .tab-indicator-left, .tab-indicator .tab-indicator-right {
	    background-color: #406881;
	    height: 25px;
	    width: 25px;
	    position: absolute;
	}
	.tab-indicator .tab-indicator-left {
	    right: 0;
	    bottom: -24px;
	}
	.tab-indicator.data-white .tab-indicator-left:after, .tab-indicator.data-white .tab-indicator-right:after {
	    background-color: #fff;
	}
	.tab-indicator .tab-indicator-left:after {
	    width: 100%;
	    height: 100%;
	    margin-top: 1px;
	}
	.tab-indicator .tab-indicator-left:after, .tab-indicator .tab-indicator-right:after {
	    content: "";
	    display: block;
	    background-color: #fff;
	}
	.tab-indicator .tab-indicator-left:after {
	    border-radius: 0 25px 0 0;
	}
	.tab-indicator .tab-indicator-left, .tab-indicator .tab-indicator-right {
	    background-color: #406881;
	    height: 25px;
	    width: 25px;
	    position: absolute;
	}
	.tab-indicator .tab-indicator-right {
	    right: 0;
	    top: -24px;
	}
	.tab-indicator .tab-indicator-right:after {
	    width: 100%;
	    height: 100%;
	    margin-top: -1px;
	}
	.tab-indicator .tab-indicator-right:after {
	    border-radius: 0px 0px 25px 0px;
	}	
.is-clicked {
	transform: translatex(0px);
    /*transform: translatex(-100px);*/
}
/*End Right Menu*/
@font-face {
	font-family: "Lusail-Regular";
        src: url("../fonts/Lusail-Regular.eot"); /* IE 9 */
    	src: url("../fonts/Lusail-Regular.eot?") format("eot"), /* IE 6-8 */
             url("../fonts/Lusail-Regular.otf") format("opentype"), /* Other browsers */
    	     url("../fonts/Lusail-Regular.ttf") format("truetype"), /* Safari, Android, iOS */
			 url('../fonts/Lusail-Regular.woff') format('woff'),
			 url("../fonts/Lusail-Regular.svg#Lusail-Regular") format("svg");
}
.article h7 {
	font-family: 'Lusail-Regular', arial, sans-serif; 
}
.cd-navigation li {
	background-color: #0b4261;
    color: #fff;
    padding: 7px 15px 7px 7px;
    border-radius: 7px;
    font-weight: 500;
	margin: 20px;
	font-size: 1.2rem;
}
.line-menu {
	border-bottom: 1.5px solid #6f8ea0;
    list-style: none;
    border-radius: 0 !important;
    width: 100%;
    margin: auto!important;
}
#cd-menu-trigger::after {
	border-right: 10px solid;
    height: 100vh;
}
.bord-r {
	border-right: 5px solid #40697f;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000000;
}
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #598099; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
::marker {
	font-size: 2rem;
}
#cd-lateral-nav .item-has-children .sub-menu2 > a::after {
  content: '';
  display: block;
  height: 25px;
  width: 25px;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1em;
  background: url("../img/-cd-arrow.svg") no-repeat center center !important;
  background-size: 25px 25px;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
	
	transition: all 0.7s ease-in-out;
	border: none;
}
.sub-menu2 {
	margin-bottom: 10px;
}
#cd-lateral-nav .item-has-children > a.sub-menu2::after {
    background: url(../img/-cd-arrow.svg) no-repeat center center !important;
	background-size: 15px !important;
    transition: all 0.7s ease-in-out;
	right: 0 !important;
	margin-right: -25px;
}
#cd-lateral-nav .list-unstyled > a.submenu-open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
	
	transition: all 0.7s ease-in-out;
}
.lh-1 {
	vertical-align: text-top;
}
.footer {
	position: absolute;
	word-spacing: 10px; bottom: 10px; left:0; right:0;
}
.copyright {
	color: #0b4261;
    font-size: small;
    word-spacing: normal;
    border-top: 1px solid;
    width: fit-content;
    margin: auto;
    text-shadow: 0 1px 0px #698799;
    font-weight: 800;
	margin-top: 10px;
}
.dr-h {
	background-color: #6f8da0;
    border-radius: 15px;
    width: fit-content;
    padding: 0px 30px;
    font-weight: 600;
    color: #fff;
	position: relative;
    border: 1px solid #fff;
   vertical-align: top;
    margin-top: -0.9px;
}
.l-arrow {
	background-color: #0b4261;
    color: #fff !important;
    padding: 5px 8px 5px 20px !important;
    border-radius: 0 20px 20px 0;
    margin-left: -20px;
}
.r-arrow {
	background-color: #0b4261;
    color: #fff !important;
    padding: 5px 20px 5px 8px !important;
    border-radius: 20px 0 0 20px;
    margin-right: -20px;
}
.adjust {
	display: inline-table !important;
    margin-top: 27px;
}
.info-tap {
	position: absolute;
    width: fit-content;
    background-color: #e6e6e6;
    border-radius: 0px 0px 10px 10px;
    margin-top: 32px;
	left: 0;
    right: 0;
    justify-self: center;
	 margin-right: 50px;
	box-shadow: 0 1px 2px #586369;
}
.info-tap2 {
	position: absolute;
   width: inherit;
    margin-top: 32px;
	left: 0;
    right: 0;
    justify-self: center;
	/* margin-right: 50px;*/
}
.box-read {
	background-color: #dae3e8;
    border-radius: 0 0 10px 0;
    border-bottom: 3px solid #fff;
    padding: 5px;
	align-content: center;
}
.box-cnt {
	background-image: url(../img/sprit2.svg), url(../img/cnt-line.svg);
    background-repeat: no-repeat, repeat-y;
    width: 30px;
    background-position: center;
    border-bottom: 3px solid #fff;
}
.box-chek {
	background-color: #edf2f5;
    border-radius: 0 0 0 10px;
    border-bottom: 3px solid #fff;
    padding: 5px;
}
.goals {
	background-image: url(../img/Box-L-up.svg), url(../img/Box-R-up.svg), url(../img/Box-R-bottom.svg), url(../img/Box-L-bottom.svg), url(../img/Line-R-bottom.svg), url(../img/MID-bottom.svg), url(../img/Line-L-bottom.svg), url(../img/MID-center.svg), url(../img/MID-up.svg);
    background-size: 50px, 50px, 50px, 50px, 14.9px, 3.57px, 15px, 53px, 3.58px;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat-y, repeat-x, repeat-y, no-repeat, repeat-x;
   min-width: 400px;
    min-height: 400px;
    margin: auto;
    background-position: left top, right top, right bottom, left bottom, right center, bottom center, left center, center top 99px, top center;
	max-width: 50%;
}
.First-pg {
	background-image: url(../img/Corner_L_Top.svg), url(../img/Corner_R_Top.svg), url(../img/Corner_R_Bottom.svg), url(../img/Corner_L_Bottom.svg), url(../img/Line_L.svg), url(../img/Line_Bottom.svg), url(../img/Line_R.svg), url(../img/Line_Top.svg), url(../img/BG.svg);
    background-size: 50px, 50px, 50px, 50px, 8.3px, 13.5px, 8.3px, 13.5px, cover;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat-y, repeat-x, repeat-y, repeat-x, no-repeat;
    background-position: left top, right top, right bottom, left bottom, center right, bottom center, left center, top center, center center;
    background-color: #f2f2f2;
	height: inherit;
	text-align: center;
}
.First-pg img {
	width: 32%;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    padding-top: 30px;
}
.sel-btn {
	background-image: url(../img/Box-L-up2.svg), url(../img/Box-R-up2.svg), url(../img/Box-R-bottom.svg), url(../img/Box-L-bottom.svg), url(../img/Line-R-bottom2.svg), url(../img/MID-bottom2.svg), url(../img/Line-L-bottom2.svg), url(../img/MID-center2.svg), url(../img/MID-up2.svg);
    background-size: 50px, 50px, 50px, 50px, 14.9px, 3.57px, 15px, 45px, 1756px;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat-y, repeat-x, repeat-y, no-repeat, repeat-x;
    /* min-width: 400px; */
    min-height: 402.45px;
    margin: auto;
    background-position: left top, right top, right bottom, left bottom, right center, bottom center, left center, center center, top 0.4px center;
    border: none;
    background-color: transparent;
}
/*.goals {
	background-image: url(../img/Box-L-up.svg), url(../img/Box-R-up.svg), url(../img/Box-R-bottom.svg), url(../img/Box-L-bottom.svg), url(../img/Line-R-bottom.svg), url(../img/MID-bottom.svg), url(../img/Line-L-bottom.svg), url(../img/MID-up.svg), url(../img/MID-center.svg), url(../img/Line-center.svg);
    background-size: 50px, 50px, 50px, 50px, 14.9px, 3.57px, 15px, 3.58px, 55px, 4.4px;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat-y, repeat-x, repeat-y, repeat-x, no-repeat, repeat-x;
    width: 400px;
    height: 400px;
    margin: auto;
    background-position: left top, right top, right bottom, left bottom, right center, bottom center, left center, top center, center top 103.5px, center top 120.0px;
}
.goals::after {
	content: "";
    background-color: #406980;
    height: 70px;
    display: block;
    width: -webkit-fill-available;
    margin-right: 15px;
    margin-left: 15px;
    margin-top: -374px;
    position: relative;
    z-index: -1;
}
.goals::before {
	content: "";
    background-color: #edf2f4;
    height: -webkit-fill-available;
    display: -webkit-inline-box;
    width: -webkit-fill-available; 
    position: relative;
    z-index: -1;
	margin: 15px;
}*/
/*.info-tap {
	position: absolute;
    width: fit-content;
    background-color: rgb(229, 224, 211, 0.9);
    padding: 5px 10px;
    border-radius: 0px 0px 10px 10px;
    margin-top: 32px;
    margin-right: 10px;
    border: 1px solid #e5e0d3;
	left: 0;
    right: 0;
    justify-self: center;
}*/
.accordion-button:focus {
	box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
	background-color: #e7f2f7 !important;
	border-radius: 7px;
    box-shadow: 0px 2px 3px #ccc !important;
}
.accordion-button {
	position: inherit;
	display: contents;
	width: inherit;
	padding: 0 10px;
	font-size: unset;
	margin: auto;
	color: #40697f;
    font-weight: 600;
}
.borfer-sprit {
	border-left: 1.5px solid #9fb2c0;
    height: 27px;
    align-self: center;
}
/*Start Haroof Box*/
.image-block{ display: inline-block; list-style: none; margin: 10px; transition: all 0.7s ease-in-out !important;}
.image-block img{
	/*border: 1px solid #d5d5d5;
	border-radius: 4px 4px 4px 4px;
	background-color: rgba(215, 201, 178, 0.5); */
	padding:25px;
	min-height: 140px;
	background-image: url("../img/L-up.svg"), url("../img/R-up.svg"), url("../img/R-bottom.svg"), url("../img/L-bottom.svg");
	background-repeat: no-repeat;
	background-position: left top, right top, right bottom, left bottom;
	background-size: 40px;
	transition: all 0.7s ease-in-out;
}
.image-block::after {
    content: "";
    background-color: #f5f5f5;
    width: -webkit-fill-available;
    height: 113px;
    display: inline-block;
    /* border: 1px solid #ededed; */
    margin-top: -170px;
    vertical-align: middle;
    margin-right: 12px;
    margin-left: 12px;
	transition: all 0.7s ease-in-out;
}

.image-block::before {
    content: "";
    border: 1.5px solid #f0f0f0;
    width: -webkit-fill-available;
    display: inline-block;
    height: 133.0px;
    vertical-align: middle;
    margin-bottom: -158.6px;
    margin-right: 3.28px;
    margin-left: 3.32px;
}
.image-block:hover::after {
    content: "";
    background-color: #edf2f4;
    width: -webkit-fill-available;
    height: 124px;
    display: inline-block;
    /* border: 1px solid #ededed; */
    margin-top: -168px;
    vertical-align: middle;
    margin-right: 7px;
    margin-left: 7px;
	 -webkit-box-shadow: inset 0 0 15px #A9CF54;
    -moz-box-shadow: inset 0 0 15px #A9CF54;
	box-shadow:inset 0 0 15px #A9CF54;
	transition: all 0.7s ease-in-out;
}
.image-block img:hover{
	filter: contrast(140%);
	
	transition: all 0.7s ease-in-out;
}
.image-block a:focus{
	background-color: #fbf8d8;
     width: -webkit-fill-available;
    display: inline-block;
	 -webkit-box-shadow: inset 0 0 15px #d1814c;
    -moz-box-shadow: inset 0 0 15px #d1814c;
	box-shadow:inset 0 0 15px #d1814c;
	transition: all 0.7s ease-in-out;
}
/*.image-block img:hover{border: 1px solid #A9CF54;box-shadow:0 0 5px #A9CF54; background-color: rgba(255, 255, 255, 0.8);}*/
/*.image-block img>a{border: 1px solid #A9CF54;box-shadow:0 0 5px #A9CF54; background-color: rgba(255, 0, 0, 0.8);}*/
.image-block2{ display:block;position: relative; margin:11px 0px;}
.image-block2{border: 1px solid #d5d5d5; border-radius: 4px 4px 4px 4px; padding:5px; background-color: rgba(215, 201, 178, 0.5);}
.image-block2:hover{border: 1px solid #A9CF54;box-shadow:0 0 5px #A9CF54; background-color: rgba(255, 255, 255, 0.8); cursor:pointer;}
.dropdown-menu > li > a {
    display: block;
    padding: 3px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}
.dropdown-menu > li > a:hover {
	background-color:#e6ddcd;
}
.hidden-content {
	position: absolute;
    left: 13px;
    /*top: 8px;*/
	bottom: 15px;
	display: none;
  transition: opacity 0.5s ease-in-out; /* تأثير الانسياب */
	
}
.hidden-content.show {
  opacity: 1;
}
/*.toggle-checkbox[open] .select-box {
	border:10px solid red !important;
	display: block !important;
	background-color: red !important;
}*/


/*End Haroof Box*/
input[type='radio'] {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #949392;
    border-radius: 50%;
    outline: none;
    box-shadow: 0 0 5px 0px gray inset;
	vertical-align: middle;
	background-color: #fff;
}
input[type='radio']:checked:before {
    background-color: #05a2b9;
}
input[type='radio']:before {
    content: '';
    display: block;
    width: 60%;
    height: 60%;
    margin: 20% auto;
    border-radius: 50%;
}
input[type='checkbox'] {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #949392;
    outline: none;
    box-shadow: 0 0 5px 0px gray inset;
	vertical-align: middle;
	background-color: #fff;
}
input[type='checkbox']:checked:before {
    background-color: #98c13d;
}
input[type='checkbox']:before {
    content: '';
    display: block;
    width: 60%;
    height: 60%;
    margin: 20% auto;
    
}
select {
	direction: ltr;
    border: 1px solid #666666;
    border-radius: 4px;
    padding: 2px 5px 0px 5px;
    color: #3d3d3d;
}
.d-flex-m {
	display: flex;
}
.border-sprit {
    border-left: 2px solid #d5ccb0;
    height: 27px;
    align-self: center;
    margin-right: 10px;
    margin-top: -10px;
    box-shadow: 1px 0px 0px #f5f2eb;
}
.key {
	position: absolute;
    bottom: 25px;
    right: 40px;
    left: 40px;
    display: flex;
	/*width: 0px;*/
	width: max-content;
z-index: inherit;
}
.key a {
	border: 3px solid #fff;
    border-radius: 50%;
    padding: 10px;
    background-color: #0b4261;
    outline: 1.5px solid #0b4261;
    height: max-content;
	cursor: grab;
}
.kk {
	border: 3px solid #fff;
    border-radius: 50%;
    padding: 10px;
    background-color: #0b4261;
    outline: 1.5px solid #0b4261;
    height: max-content;
	cursor: grab;
	position: absolute;
	right: 0;
}
.kk:active > .key {
	width: 100% !important;
}
.key img {
	width: 55px;
}
#toggleButton { 
  z-index: 2;
}

.box {
	border: 1.5px solid #9eb3bf;
    border-radius: 15px;
    margin-right: -45px;
    box-shadow: 0 0 10px #9eb3bf;
    width: 0;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.9);
    top: 0;
    right: 0;
    opacity: 0;
    transition: width 0.5s ease-in-out, opacity 0.5s ease-in-out;
    margin-top: -9px;
}

.box.show {
 /* width: 100%;*/
	width: calc(100vw - 120px);
  opacity: 1;
}
.copyright2 {
	position: absolute;
    bottom: 15px;
    right: 0;
    left: 0;
    color: #808080;
    padding: 20px;
}
.icon-sel {
	height: 40%;
	width: inherit;
	padding-top: 30px !important;
}
.learn {
	position: absolute;
    bottom: 0;
    width: -webkit-fill-available;
    height: 50%;
    align-content: center;
    /*color: #0b4261;*/
	font-size: 4rem;
	color: #406980;
	font-weight: 900;
	text-shadow: 0 3px 0px #ccc;
	}
.g-4 a:hover {
	filter: grayscale();
	  transition: all 0.7s ease-in-out;
}
.add2 {
	background-image: url(../img/Corner_L_Top2.svg), url(../img/Corner_R_Top2.svg), url(../img/Corner_R_Bottom2.svg), url(../img/Corner_L_Bottom2.svg), url(../img/Line_L2.svg), url(../img/Line_Bottom2.svg), url(../img/Line_R2.svg), url(../img/Line_Top2.svg);
	background-size: 40px, 40px, 40px, 40px, 6.3px, 11.05px, 6.3px, 11.05px;
	background-color: #fff;
	    min-height: 150px;
	text-align: -webkit-center;
	margin: 0.5%;
	min-width: 200px;
	width: 15.66666667%;
	text-decoration: none;
	transition: all 0.7s ease-in-out;
}
.add2:hover {
	/*box-shadow: 0px 0px 15px #337ab7;*/
	filter: grayscale(70%) drop-shadow(0 0 7px #337ab7) brightness(96%);;
	transition: all 0.7s ease-in-out;
}
.goals .lh-lg {
		overflow: auto;
    /* display: inline-block; */
    height: 40vh;
    padding: 25px;
    margin: 0 !important;
	}
@media (max-height: 1050px){
	.footer {
	position: relative;
	}
}
@media (max-width: 666px){
	.pd-tb2 {
		padding: 10px !important;
	}
	.goals .lh-lg {
		overflow: auto;
    /* display: inline-block; */
    height: 40vh;
    padding: 25px;
    margin: 0 !important;
	}
	.scrl-mob {
		display: inline-block;
    overflow: auto;
    height: 50vh;
    margin: 0 !important;
    padding: 30px;
	}
	#cd-menu-trigger .cd-menu-icon {
		left:35px;
	}
	#cd-lateral-nav {
		width: 300px;
		-webkit-transform: translateX(300px);
  -moz-transform: translateX(300px);
  -ms-transform: translateX(300px);
  -o-transform: translateX(300px);
  transform: translateX(300px);
	}
	.is-clicked {
		 transform: translatex(0px);
   /* transform: translatex(-40px);*/
}
	.sub-menu .p-0 {
		width: 170px!important;
	}
	#cd-lateral-nav .p-4 {
		display: flex;
	}
	#cd-lateral-nav .p-4 h7 {
    align-content: center;
		margin: 0 5px;
	}
	header.lateral-menu-is-open {
		transform: translateX(-295px);
	}
	.image-block img {
		/*min-height: 27.5vw!important;*/
		min-height: 120px!important;
	}
	.image-block .w-tb2 { 
		width: 45vw;
		}
	.image-block .p-tb2 { 
		padding: 3px;
	}
	.image-block {
		margin: 5px !important;
	}
	.image-block::after {
		height: 93px;
		margin-top: -149px;
	}
	.image-block::before {
		    height: 113.0px;
		margin-bottom: -138.6px;
	}
	.image-block:hover::after {
    
    height: 104px;
  
    margin-top: -148px;
    
}
	.d-flex-m {
	display: block !important;
}
	.border-sprit {
		display: none;
	}
	#cd-top-nav {
		height: 70%;
	}
	header {
		height:150px;
	}
	.accordion-flush .d-grid {
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
		width: 100%;
	}
	.img-none {
		display: none;
	}
	.accordion-flush .d-flex {
	margin-top: 72px;
    width: 50%;
	}
	.border-sprit-m {
    border-left: 1.5px solid #9fb2c0;
    height: 27px;
    align-self: center;
    margin-top: 140px;
	display: block !important;
}
	.info-tap, .info-tap2 {
		margin: auto;
	}
	.box-cnt {
		display: none;
	}
	.box-read, .box-chek {
		border-radius: 0 0 10px 10px;
	}
	#cd-menu-trigger {
		height: 80px;
	}
	.key {
		bottom: 5px;
    right: 10px;
    left: 10px;
	}
	.key img {
	width: 40px;
}
	.box {
		/*height: 85px;*/
		height: auto;
		min-height: 85px;
	}
	.First-pg img {
	width: 72%;
    
    padding-top: 50px;
}
	.icon-sel {
		padding-top: 30px;
	}
	.sel-btn {
     background-size: 50px, 50px, 50px, 50px, 14.9px, 3.57px, 15px, 40px, 1199px;
    min-height: 280px;
    background-position: left top, right top, right bottom, left bottom, right center, bottom center, left center, center center, top 2.5px center;
}
	.learn {
		font-size: 3.2rem;
	}
	.add2 {
		width: -webkit-fill-available;
	}
	.box.show {

	width: calc(100vw - 50px);
 
}
	.box-alt {
		margin: 5px 10px 0 10px!important;
	}
	.goals {
		min-width: inherit!important;
		max-width: inherit!important;
		padding-bottom: 10px;
	}
	img[src="img/Dr3/D3_15.svg"], img[src="img/Dr12/D12_174.svg"]{
		 width: 95vw;
	}
	/*#IMG01_15 {
        width: 95vw;
    }*/
}
.f0{
	font-size: 0;
}
.box.show .f0 {
	font-size: large;
	transition-delay: 0.5s;
}
.fs-7 {
    font-size: calc(1.375rem + 2.5vw) !important;
	color: #406980;
	font-weight: 900;
	text-shadow: 0 3px 0px #ccc;
}
.add1 {
	background-image: url(../img/Corner_L_Top.svg), url(../img/Corner_R_Top.svg), url(../img/Corner_R_Bottom.svg), url(../img/Corner_L_Bottom.svg), url(../img/Line_L.svg), url(../img/Line_Bottom.svg), url(../img/Line_R.svg), url(../img/Line_Top.svg);
	height: auto;
}
.level-list {
	color: #406980;
	border:1px solid #6f8da0;
	background-color: #cfd9df;
	padding: 10px;
    border-radius: 10px;
}
.drs {
	background-color: #6f8da0;
    color: #fff;
    border-radius: 10px;
    width: fit-content;
    padding: 0 10px;
    min-width: 150px;
}
.scol-intro {
	overflow: auto;
    margin: 0px;
    padding-left: 10px;
    scrollbar-width: thin;
    height: calc(100% - 10px);
}
.index-icn {
	color: #fff;
    transform: scaleX(-1);
    display: flex;
    font-size: x-large;
	text-decoration: none;
	position: absolute;
    left: 0;
	
	border: 3px solid #fff;
    border-radius: 50%;
    padding: 10px;
    background-color: #0b4261;
    outline: 1.5px solid #0b4261;
    height: max-content;
	transition: all 0.3s ease-in-out;
}
.add-box {
	width: fit-content;
    height: auto;
    margin-top: 0;
    padding: 8px 10px 8px 40px;
    opacity: inherit;
    margin-left: 16px;
    font-weight: 900;
    color: #0b4261;
	transition: all 0.3s ease-in-out;
}
.add-key {
	right: auto;
	bottom: 30px;
	left: 30px;
	cursor: grab;
	transition: all 0.3s ease-in-out;
}
.add-key:hover .index-icn {
	
    left: 106px;
	transition: all 0.3s ease-in-out;
}
.add-key:hover .add-box {
	padding: 8px 40px 8px 10px;
	transition: all 0.3s ease-in-out;
}
.active {
	
	background-color: #fbf8d8;
    
	 -webkit-box-shadow: inset 0 0 15px #d1814c;
    -moz-box-shadow: inset 0 0 15px #d1814c;
	box-shadow:inset 0 0 15px #d1814c;
	transition: all 0.7s ease-in-out;
}
.active .hidden-checkbox {
	display: none !important;
	transition: all 0.7s ease-in-out;
}
.box-alt {
	border: 1.5px solid #9eb3bf;
    border-radius: 10px;
    box-shadow: 0 0 5px #9eb3bf;
    width: fit-content;
    background-color: rgba(255, 255, 255, 0.9);
    transition: width 0.5s ease-in-out, opacity 0.5s ease-in-out;
    margin: auto;
    padding: 8px;
    text-decoration: none;
	font-weight: 900;
	display: block;
	color: #57778b;
}
.box-alt:focus {
	background-color: #6f8da0;
	color: #fff;
	
}
.text-justify {
	text-align: justify !important;
	direction: rtl;
} 
@media (max-width: 1200px) and (orientation: landscape) {
	.box {
		/*height: 85px;*/
		height: auto;
		min-height: 85px;
	}
	.goals .lh-lg {
		overflow: auto;
    /* display: inline-block; */
    height: 40vh;
    padding: 25px;
    margin: 0 !important;
	}
	.sel-btn {
     background-size: 50px, 50px, 50px, 50px, 14.9px, 3.57px, 15px, 40px, 1199px;
    min-height: 280px;
    background-position: left top, right top, right bottom, left bottom, right center, bottom center, left center, center center, top 2.5px center;
}
	.scrl-mob {
		display: inline-block;
    overflow: auto;
    height: calc(100vh - 220px);
    margin: 0 !important;
    padding: 30px;
	}
	.learn {
		font-size: xxx-large;
	}
}
@media (min-width: 1200px) {
    .fs-7 {
        font-size: 4.5rem !important;
    }
}

/*@media (min-width: 768px) {
   .First-pg .row-cols-md-3>* {
       
        width: 43.33333333% !important;
    }
	
}*/
.app-down {
	text-align: center;
    bottom: 70px;
    position: absolute;
    right: 0;
    left: 0;
	color: #75541d;
	text-shadow: 0 1px #ccc;
}

.app-down img {
	width: 100px;
    position: unset;
    padding-top: inherit;
}