/** Light Green: #7ACF53 
*** Dark Green: #4F8934  (slightly darker for footer: #45752F)
*** Orange: #EB9125
*** Neon Orange: #FED400
*** Light Tan background: #F2EEEA
*** Mud green color: #646E46
*** Dark grey/green for text: #565B48
*/
/*********** Containers ***********/

html {
  font-size: 18px;
}

body {
    background-color: #FFFFFF;
    height: 100%;
}

/*********** Navigation ***********/

ul {
    list-style: outside disc;
    /* margin-left: 1em; */
}

ul li {
    position: relative;
    left: 1em;
    padding-right: 1em;    
}

.nav-item a {
    color: #646E46!important;
    font-weight: bold;
    font-size: 15pt;
    font-family: 'Noto Serif Georgian', serif;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #F2EEEA;
}

/*********** Common to all pages ***********/

.bodyMainHeading {
    color: #646E46;
    text-align: center;
    font-family: 'Noto Serif Georgian', serif;
    margin-bottom: 3%;
}

.bodyTopLeftColHeading,
.bodyMidRightColHeading,
.bodyBottomLeftColHeading {
    color:#882D17;
    font-family: 'Noto Serif Georgian', serif;
    margin-bottom: 3%;
}


/*********** Text ***********/

.bodyTopLeftColText,
.bodyMidRightColText,
.bodyBottomLeftColText {
    color:#882D17;
    font-family: 'Noto Sans Georgian', sans-serif;
    font-size: 16pt;
    text-align: justify;
}

.ParaLeftContentHeading i {
	color: #F7BF00 !important;
}

/*********** Buttons ***********/

.btn {
    background-color: #FFC708;
    border-radius: 1.375rem;
    border: none;
    float: right;
    color: white;
}

.btn:hover {
    background-color: #F7BF00;
    border-radius: 1.375rem;
    border: none;
    color: white;
}

.btn:active {
    background-color: #FFC708!important;
    color: white!important;
}

/*********** Footer ***********/

.footer {
    background-color: #646E46;
    margin-top:20px;
}

.footer p {
    display: flex;
    padding: 0.5%;
    justify-content: space-between;
    margin-bottom: 0; 
}

.footer span {
    color: #246461;
    font-family: 'Noto Sans Georgian', sans-serif;
    color: white;
}

.footer span a {
    color: #246461;
    font-weight: bold;
    font-family: 'Noto Sans Georgian', sans-serif;
    color: white;
}

/******************************************/

/*********** Media Queries ***********/

/******************************************/

/**Largest screen size... */

.logo {
    height: 65px;
    margin-left: 10%;
}

.bkgbanner {
  position: relative;
  height: 480px;
  width: 100%;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  margin-bottom: 55px;
  border: none;
  box-sizing: border-box;
}

.bkghighlight {
  position: absolute;
  height: 256px;
  width: 256px;
  border: 5px solid silver;
  border-radius: 50%;
  bottom: 0;
  right: 50px;
  transform: translateY(50%);
  box-shadow: 5px 5px 10px #222;
}

.bkg-section-pic {
  height: 156px;
  width: 156px;
  border: 5px solid silver;
  border-radius: 10%;
  /* bottom: 0;
  right: 70px; 
  transform: translateY(50%); */
  box-shadow: 5px 5px 10px #222;
  float: left;
  margin-right: 35px;
  margin-bottom: 35px;
}

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

    /******** Containers *******
    body {
        min-width: 375px;
    }*/

    /******** Navigation *******/

    .logo {
        height: 65px;
    }
	
	.bkgbanner {
		height: 400px;
	}
	
	.bkghighlight {
	  position: absolute;
	  height: 200px;
	  width: 200px;
	  right: 30px;
	}
	
		.bkg-section-pic {
	  height: 95px;
	  width: 95px;
	}
}

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

    /******** Containers *******
    body {
        min-width: 375px;
    }*/

    /******** Navigation *******/

    .logo {
        height: 55px;
    }
	
	.bkgbanner {
		height: 350px;
	}
	
	.bkghighlight {
	  position: absolute;
	  height: 156px;
	  width: 156px;
	  right: 20px;
	}
	
	.bkg-section-pic {
	  height: 65px;
	  width: 65px;
	}
}



.title1 {
	font-family:Nunito,Arial;
	color: white;
	text-shadow: 5px 5px 10px #000;
	text-align: right;
	/* margin-top: 15px; */
}

.title2 {
	font-family:Nunito,Arial;
	color: white;
	text-shadow: 5px 5px 10px #000;
	text-align: right;
	/* margin-right: 45px; */
}

.titleSand {
	color: #FAEBD7;
}

.bkg-section-more {
	background-color: #F9E892;
}


/* Custom responsive font size for h1 */
    h1.custom-responsive-h1 {
      font-size: 2.2rem; /* Default font size */
    }

    @media (min-width: 576px) {
      h1.custom-responsive-h1 {
        font-size: 2.8rem;
      }
    }

    @media (min-width: 768px) {
      h1.custom-responsive-h1 {
        font-size: 3.5rem;
      }
    }

    @media (min-width: 992px) {
      h1.custom-responsive-h1 {
        font-size: 4rem;
      }
    }

    @media (min-width: 1200px) {
      h1.custom-responsive-h1 {
        font-size: 4.5rem;
      }
    }
