:root {
    --theme-color: #126AEE;
    --white : #ffffff;
    --main-text: #373738;
    --sub-text: #818181;
}
@font-face {
    font-family: "Kanit";
    src: url("../fonts/Kanit-Regular.ttf");
}
html {
    min-height: 100%;
    height: 100%;
    width: 100%;
}
html,body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: "Kanit", sans-serif;
}
::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
	border-radius: 10px;
}
::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-image: -webkit-gradient(linear,
									   left bottom,
									   left top,
									   color-stop(0.44, rgb(100, 155, 237)),
									   color-stop(0.72, rgb(54, 102, 176)),
									   color-stop(0.86, rgb(18 106 238)));
}

a {
    color: #0a58ca;
    text-decoration: none;
}

.issue-details {
    color: var(--theme-color);
  }

.btn-blue {
    color: var(--theme-color);
    background-color: var(--white);
    border: 1px solid var(--theme-color);
}
.btn-blue:hover,
.btn-blue:focus {
    color: var(--white);
    background-color: var(--theme-color);
    border: 1px solid var(--white);
}
.text-blue {
    color: var(--theme-color);
}
.main-text {
    color: var(--main-text);
}
.sub-text {
    color: var(--sub-text);
}
.nav-bg-blue {
    background-color: var(--theme-color);
}
.navbar-nav li a {
    color: var(--white);
}
.navbar-toggler:focus {
  box-shadow: none;
}
.search-bar .form-control:focus {
  box-shadow: none;
}
.search-bar input {
  border-radius: 16px 0 0 16px;
  border: 0;
}
.search-bar button {
  border-radius: 0 16px 16px 0;
  background-color: #fff;
  color: #818181;
  border: 0;
  height: 100%;
  box-shadow: none;
}
.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    transition: 0.2s ease-in;
    display: flex;
    justify-content: center;
    align-items: center;
}
.share-btn:hover,
.share-btn:focus {
    color: var(--white);
    background-color: var(--theme-color);
}
.download-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    border: 1px solid var(--theme-color);
    background-color: var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
}
.download-btn:hover,
.download-btn:focus {
    border: 1px solid var(--theme-color);
    background-color: var(--white);
    color: var(--theme-color);
}
.share-btn i,
.download-btn i {
    font-size: 18px;
}
.footer {
    background-color: #ebebeb;
    color: #535353;
    padding: 4rem 1rem 1rem;
}
.footer-links ul li a {
    color: #535353;
    text-decoration: none;
}
.footer-links ul {
    list-style-type: none;
    padding: 0;
    line-height: 40px;
}
.contact-cards {
  display: flex;
  justify-content: center; /* Center the cards horizontally */
}

.contact-cards .card {
  border: 1px solid #818181;
}

.contact-card {
  flex: 1; /* Equal width for both cards */
  max-width: 300px; /* Set a fixed width for the cards */
  margin: 10px; /* Add some margin between the cards */
} 

@media (max-width: 767px) {
  .contact-cards {
    flex-direction: column;
    align-items: center;
  }
  .contact-card {
    width: 100%;
  }
}

/* Owl Carousel Issue Slider */
.carousel-wrap {
    padding: 0 5%;
    position: relative;
  }

/* fix blank or flashing items on carousel */
.carousel-wrap .owl-carousel .item {
  position: relative;
  z-index: 100; 
  -webkit-backface-visibility: hidden; 
}

/* end fix */
.carousel-wrap .owl-nav > button {
  margin-top: -15px;
  position: absolute;
  top: 50%;
  color: #cdcbcd!important;
  width: 30px;
  height: 30px;
  border: 2px solid #111111!important;
  padding: 0.25rem 0.5rem!important;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-wrap .owl-nav i {
  font-size: 18px;
}

.carousel-wrap .owl-nav .owl-prev {
  left: -50px;
}

.carousel-wrap .owl-nav .owl-next {
  right: -50px;
}

@media (max-width: 767px) {
  .carousel-wrap .owl-nav .owl-prev {
    left: -30px;
  }
  .carousel-wrap .owl-nav .owl-next {
    right: -30px;
  }
  .issue-details {
    font-size: 1rem;
/*    color: var(--theme-color);*/
  }
}
/* Owl Carousel Issue Slider */


.social-icons{
    padding:20px;
    background-color:#00506b;
  text-align: center;
}
.social-icons a{
    color:#fff;
  line-height:30px;
  font-size:30px;
  margin: 0 5px;
  text-decoration:none;
  
}
.social-icons a i{
    line-height:30px;
  font-size:30px;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1); 
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1); 
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
}
.social-icons a:hover i{
  box-shadow: 0px 0px 150px #000000;
  z-index: 2;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.5);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.5);   
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.5);
  transition: all 200ms ease-in;
  transform: scale(1.5);
}

.span-heading{
    font-size: 25px;
}

.view-btn{
        color: rgb(255, 255, 255);
    background: rgb(46, 59, 151);
    border-width: 2px;
    border-style: solid;
    border-color: rgb(46, 59, 151);
    border-image: initial;
}