@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400..700&display=swap');

:root {
    --primary: #cea766;
    --primary-light: #fdf6ec;
    --light: #F6F7F8;
    --dark: #1a2731;
    --gray-light: #dee0e2;
    --deep-gray: #5d5d5d;
    --black: #000000;
}

*,
*::before,
*::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

html {
 scroll-behavior: smooth;
 overflow-x: hidden;
}

body {
 font-family: "Domine", sans-serif;
 font-size: 1rem;
 line-height: 27px;
 color: #636b75;
 overflow-x: hidden;
 background: var(--primary-light);
}
a {
 text-decoration: none;
 color: inherit;
}
.text-primary {
 color: var(--primary) !important;
}
.bg-primary {
  background: var(--primary) !important;
}
.bg-gray-light {
  background: var(--gray-light);
}
.bg-primary-light {
  background: var(--primary-light);
}
.py-6{
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.txt-primary{
  color: var(--primary) !important;
}
.txt-primary-light{
    color: var(--primary-light) !important;
}
.txt-gray-light{
    color: var(--gray-light) !important;
}
.txt-black{
    color: var(--black) !important;
}

/*** Button ***/
.btn {
    font-size: .9rem;
    font-weight: 500;
    border-radius: 0 !important;
}
.btn-primary{
    background: var(--primary) !important;
    color: #FFFFFF !important;
    border: none !important;
}
.btn-gray-light{
    background: var(--gray-light) !important;
    color: var(--black) !important;
    border: none !important;
}
.btn-black{
    background: var(--black) !important;
    color: var(--light) !important;
    border: none !important;
}

.btn-square {
    width: 38px;
    height: 38px;
}
.btn-sm-square {
    width: 32px;
    height: 32px;
}
.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
.border-primary {
  border-color:  var(--primary) !important;
}
.border-deep-gray {border-color: var(--deep-gray)!important;}

/* input .form-control{
  background-color: var(--light) !important;
} */


.fw-medium {font-weight: 500 !important;}
.fw-bold {font-weight: 700 !important;}
.fw-black {font-weight: 900 !important;}


.accordion-button:not(.collapsed) {
  box-shadow:none !important;
}
.accordion-button {
    font-size: .9rem;
    font-weight: 500;
}
.accordion-body{
  border: 1px solid var(--gray-light);
}

.form-control{
  color: var(--black) !important;
}
.form-control, .form-select{
  font-size: .9rem !important;
  padding: .8rem 1rem !important;
  border-radius:0 !important
}
.form-select{
  color: var(--deep-gray) !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

#owl-demo .item{
  margin: 3px;
}
#owl-demo .item img{
  display: block;
  width: 100%;
  height: auto;
}
.owl-theme .item h3{
   font-size: 1.3rem !important;
   color: var(--light) !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.small, small {
  font-size: .75em !important;
}

.modal-fullscreen {
  width: 100% !important;
}
.modal-body p{
  font-size: .85rem;
  color: var(--deep-gray);
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}
.top-bar {
    /* height: 45px; */
    padding: .5rem 0;
}

.fixed-bottom-bg{
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.9);
}

.icon-bg{
  background: var(--secondary);
  border-radius: 50px;
  color: var(--black);
  display: inline-block;
  padding: 6px 10px;

}
#header {
    background: rgb(50, 50, 68);
    border-bottom: 1px solid rgba(12, 11, 9, 0.6);
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    top: 0px;
  }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.sticky-top {
    position: sticky;
    /* padding: 0 15rem; */
    transition: .5s;
    z-index: 9999;
}
.navbar .logo {
  font-size: 1.3rem;
  font-weight: 700;
}

.navbar a {
    color: var(--black);
    font-weight: 500;
}
  .navbar a:hover, .navbar .active, .navbar li:hover > a {
    color: var(--primary)
  }
  .navbar .dropdown ul {
    padding: 7px 7px;
    background: var(--light);
    border-top: 3px solid #d6d8db;
    box-shadow: 0px 0px 10px rgba(127, 137, 161, 0.15);
    transition: 0.3s;
  }
  .navbar .dropdown ul li {
    /* min-width: 200px; */
  }
  .navbar .dropdown ul li a {
    padding: 8px 8px;
    color: var(--black);
    text-decoration: none;
    border-bottom: .1px solid #ccc;
  }
  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: var(--light) !important;
    background: var(--primary);
  }
  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
  /*  visibility: hidden;*/
  }
  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
  .visit-online a{
    color: var(--light);
    margin: 0 20px;
  }
  
  /**
  * Mobile Navigation 
  */
  .mobile-nav-toggle {
    color: #888;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }

  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(210, 212, 218);
    transition: 0.3s;
    z-index: 999;
  }
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 12px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 6px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  .navbar-mobile a {
    padding: 10px 20px;
    font-size: 15px;
    color: #1a1814;
    border-bottom: 1px solid #ccc;
    margin: 0px 14px;
  }
  .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: var(--primary);
  }
  .navbar-mobile .getstarted {
    margin: 15px;
  }
  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }
  .navbar-mobile .dropdown ul li {
    min-width: 200px;
  }
  .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
  }
  .navbar-mobile .dropdown ul a i {
    font-size: 12px;
  }
  .navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
    color: var(--primary);
  }
  .navbar-mobile .dropdown > .dropdown-active {
    display: block;
  }
  .navbar-mobile .visit-online a{
    color: var(--light);
    margin: 0 20px;
    text-align: center;
    display: block;
  }



/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .2);
}
.txt-slider h1{
    font-size: 2.5rem;
}



.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    left: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 15px;
    height: 15px;
    margin: 5px 0;
    /* background: #FFFFFF; */
    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
    border-radius: 45px;
    border: 2px solid #fff;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 15px;
    height: 40px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
}

.link{
  color: var(--primary);
}
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.67), rgba(0, 0, 0, 0.13)), url(../img/geopolitics-inner-banner.svg) center center no-repeat;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.bg-map {
    background-image: url(../img/map-inner-banner.svg);
}
.bg-globe {
    background-image: url(../img/globe-inner-banner.svg);
}
.bg-ocean {
    background-image: url(../img/ocean-inner-banner.svg);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.heading{
    color: var(--black);
    font-size: 1rem;
    font-weight: 700;
    line-height: 24px;
}
.heading-top{font-size: .8rem;}
.heading-top span{color: #cea766;}

.title{
    font-size: 1.7rem;
    color: var(--black) !important;
    font-weight: 700;
}

.current-issue-area{
    background: var(--light);
    box-shadow: 1px 29px 31px -43px rgba(0,0,0,0.75);
    -webkit-box-shadow: 1px 29px 31px -43px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 29px 31px -43px rgba(0,0,0,0.75);
}

.current-issue-area ul{
    font-size: .75rem;
    line-height: 2;
    font-weight: 700;
    letter-spacing: .04em;
    padding-left: 0;
}
.current-issue-area li{
  display: inline-block;
}


.about{
  content: "";
  background: url(../img/bg-texture.png) no-repeat right bottom;
  background-color: var(--gray-light);
}
.about-title{
    font-size: 1rem;
    color: var(--black);
}
.about-heading h2{
    font-size: 2.2rem;
    color: var(--deep-gray);
    z-index: 11;
    position: relative;
}
.about-heading::before {
  content: "";
  background: #b8b8be;
  bottom: -13px;
  left: 238px;
  width: calc(36% - 40px);
  height: calc(66% - 30px);
  position: absolute;
}


.editorial-board {
  background: var(--black);
}
.editorial-board h2{
  color: var(--light);
  font-size: 2rem;
  font-weight: 700;
}
.editorial-board-chief {
  background: rgba(var(--bs-dark-rgb));
  border-left: 4px solid var(--primary);
}

.editorial-board-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.editorial-board-list li {
  position: relative;
  padding-left: 1.15rem;
  line-height: 1.65;
  color: var(--gray-light);
  margin-bottom: .4rem;
}
.editorial-board-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 6px;
  height: 6px;
  background: var(--primary);
}

.editorial-board-email {
  color: var(--primary);
  font-size: .85rem;
  letter-spacing: .02em;
  display: inline-block;
  border-bottom: 1px dotted var(--primary);
  text-decoration: none;
}
.editorial-board-email:hover {
  color: var(--primary-light);
  border-color: var(--primary-light);
}

.editorial-board-aspect-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.editorial-board-aspect-head h5 {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .12em;
  white-space: nowrap;
  margin: 0;
}
.editorial-board-aspect-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--deep-gray);
  opacity: .4;
}

.editorial-board-card {
  background: rgba(var(--bs-dark-rgb));
  border-top: 3px solid var(--primary);
  padding: 1.75rem;
}
.editorial-board-title ul {
  padding-left: 0;
}
.editorial-board-title ul li {
  list-style: none;
  line-height: 30px;
}
.editorial-board-title ul li i{
  padding-right: 10px;
}


.editorial-board-title-link {
  color: var(--light);
  display: inline-block;
}

.editorial-board-title-link:hover {
  color: var(--dark-color);
}


.governing-council {
  background: var(--gray-light);
}
.governing-council h2{
  color: var(--black);
  font-size: 2rem;
  font-weight: 700;
}
.council-card {
  background: var(--light);
  border-top: 3px solid var(--primary);
  padding: 1.75rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.council-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .1);
}

.council-role {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .1em;
  margin-bottom: .6rem;
}

.council-honours {
  color: var(--deep-gray);
  font-size: .8rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.council-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.council-head h5 {
  color: var(--black);
  text-transform: uppercase;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .08em;
  white-space: nowrap;
  margin: 0;
}
.council-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--deep-gray);
  opacity: .35;
}



.news {
  background: var(--black);
}
.news h2{
  color: var(--light);
  font-size: 1.7rem;
  font-weight: 700;
}

.news-thumb {
  position: relative;
}

.news-text-info {
  margin: 0 20px;
}

.news-title {
  margin-top: 15px;
  margin-bottom: 15px;
}

.news-title-link {
  color: var(--light);
  display: inline-block;
}

.news-title-link:hover {
  color: var(--dark-color);
}

.portfolio-image,
.news-image {
  display: block;
  transition: transform 0.6s ease-out;
}

.news-image-hover {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
  padding-bottom: 4px;
  height: 100%;
}

.news-image-hover::after {
  content: "";
  width: 0;
  height: 4px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: #198754;
}

.news-image-hover-warning::after {
  background: #ffc107;
}

.news-image-hover:hover::after {
  width: 100%;
  left: 0;
  right: auto;
  z-index: 9;
}

.image-popup:hover .portfolio-image,
.news-image-hover:hover .news-image {
  transform: scale(1.02);
}

.news-two-column {
  min-height: 199px;
  margin-bottom: 16px;
}

.news-two-column .news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.submition{
  content: "";
  background: url(../img/img-002.jpg) no-repeat right bottom;
}


.contact-info i {
  font-size: 20px;
  float: left;
  width: 44px;
  height: 44px;
  background: var(--primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff !important;
}

.contact-info h4, .contact-info .h4 {
  font-size: 24px;
  padding: 0 0 0 52px;
}
.contact-info .address i{ 
  margin: 0 9px 132px 0;
}




/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #9B9B9B;
    font-weight: normal;
    text-transform: capitalize;
    text-decoration: none;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    font-size: .8rem;
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}
.help-block.form-error {
  color: #ff3434;
  font-size: 0.9rem;
}




@media only screen and (max-width: 991px) { 
    /* tablet (portrait + landscape) and below */ 
	.header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item .banner-image {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
	.py-6 {
	  padding-top: 3rem !important;
	  padding-bottom: 3rem !important;
	}
	.header-carousel .owl-dots {
	  display: none;
	}
}

@media only screen and (max-width: 575px) { 
    /* phone and below */ 
	body{font-size:0.9rem;}
	.navbar .logo {font-size: 1rem;
    margin: 0;}
	
}