@font-face {
    font-family: "Roboto-Regular";
    src: url('Fonts/Roboto-Regular.eot');
    src: url('Fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
    url('Fonts/Roboto-Regular.woff') format('woff'),
    url('Fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Roboto-Regular, sans-serif;
}
.container {
    max-width: 1000px;
    padding: 0 15px;
    margin: 0 auto;
}
/*global classes*/
.d-inline {
    display: inline-block;
}
.d-flex {
    display: flex;
}
.clear {
    clear: both;
}
ul {
    list-style-type: none;
    padding-left: 0;
}
.text-bold {
    font-weight: 600!important;
}
.text-center {
    text-align: center!important;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mt-20 {
    margin-top: 20px;
}
.mt-40 {
    margin-top: 40px;
}
.pl-20 {
    padding-left: 20px;
}
.blue {
    color: #2e75b6;
}
.green {
    color: #2d7843;
}
.dark-green {
    color: #27445D;
}
.simple-text {
    text-align: justify;
    margin-top: 15px;
    font-size: 15px;
    line-height: 22px;
    color: #27445D;
    font-weight: 400;
}
/*end global*/
.header-block {
    position: relative;
    background-image: url("images/ipr-image.png");
    height: 620px;
    background-repeat: no-repeat;
    background-position: center -70px;
    background-size: cover;
    z-index: 0;
}
.header-block:before {
    content: "";
    position: absolute;
    display: inline-block;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgb(11,10,10); */
    /* background: linear-gradient(180deg, rgba(11,10,10,0.9) 4%, rgba(26, 77, 44, 0.7) 26%, rgba(255,133,9,0) 100%); */
    z-index: -1;
}
.header {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
}
.v-line {
    width: 1px;
    height: 20px;
    background-color: #ffffff;
    margin: 0 20px;
    vertical-align: middle;
}
.header-left-block {
    display: flex;
    align-items: center;
}
.header-left-block .logo {
    display: inline-block;
    height: 60px;
}
.header-left-block .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
nav {
    display: flex;
    align-items: center;
}
nav ul {
    display: flex;
    align-items: center;
}
nav ul li a {
    color: #221e1f;
    font-size: 14px;
    line-height: 21px;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    margin-right: 30px;
    cursor: pointer;
    transition: all ease 0.3s;
    font-weight: 600;
}
nav ul li a:hover {
    color: #f5892d;
}
/* hamburger menu */  
.nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
  
.menu li:hover{
    color:white;
    cursor:pointer;
}
  
.menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
  
.menu > li {
    overflow: hidden;
}
  /*Container for menu button  */
.menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
  
#menu-toggle {
    display: none;
}
  
/*  Creating the menu button */
.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: #f5892d;
    position: absolute;
    height: 4px;
    width: 32px;
    border-radius: 3px;
}
.menu-button::before {
    content: '';
    margin-top: -8px;
}
  
.menu-button::after {
    content: '';
    margin-top: 8px;
}
/*  Adding Functionality to the Hamburger Menu with CSS  */
#menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(45deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}
#menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0px;
    /*  transforms the hamburger icon into a cross  */
    transform: rotate(-45deg);
}
  
/* Making the navbar responsive by CSS Media Queries */
@media (max-width: 992px) {
    .header {
        height: 90px;
    }
    .header-block {
        background-position: center;
    }
    .header-left-block .logo{
        height: 80px;
    }
    .menu-button-container {
        display: flex;
    }
    .menu {
        position: absolute;
        top: 0;
        margin-top: 89px;
        left: 0;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        z-index: 2;
    }
    #menu-toggle ~ .menu li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
    }
    #menu-toggle:checked ~ .menu li {
        border: 1px solid #f5892d;
        height: 2.5em;
        padding: 0.5em;
    }
    .menu > li {
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
        background-color: #fff;
        transition: all ease 0.3s;
    }
    .menu > li:hover {
        background-color: #373434;
    }
   .menu > li:hover a {
        color: #f5892d;
    }
    .menu > li:not(:last-child) {
        border-bottom: 1px solid #f5892d;

    }
}
.btn {
    font-size: 13px;
    line-height: 21px;
    color: #FFF;
    text-align: center;
    text-transform: uppercase;
    background-color: #0b0a0a;
    border-radius: 2px;
    outline: none;
    border: none;
    padding: 5px 15px;
    cursor: pointer;
    transition: all ease 0.3s;
}
.btn:hover {
    background-color: #FFFFFF;
    color: #2e75b6;
}
.header-title {
    padding-top: 80px;
    text-align: center;
}
h1 {
    font-size: 40px;
    line-height: 60px;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}
h3 {
    font-size: 32px;
    line-height: 36px;
    color: #27445D;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}
h4 {
    font-size: 24px;
    line-height: 30px;
    color: #27445D;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}
h6 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}
@media (max-width: 576px) {
    h1 { 
        font-size: 20px;
        line-height: 30px;
    }
    /* .header-block:before {
        background: linear-gradient(180deg, rgba(11,10,10,0.9) 14%, rgba(26, 77, 44, 0.7) 100%, rgba(255,133,9,0) 100%);
    } */
}
.header-title h2 {
    font-size: 30px;
    line-height: 60px;
    color: #ffffff;
    font-weight: 300;
    text-align: center;
    margin-bottom: 30px;
}
.green-btn {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    padding: 8px 20px;
    text-align: center;
    text-decoration: none;
    background-color: #27445D;
    border: 1px solid;
}
.green-btn:hover {
    color: #2e75b6;
    background-color: #ffffff;
}
.about-us {
    background-color: #eef1ec;
    padding: 70px 0;
}
h2 {
    font-size: 32px;
    line-height: 36px;
    color: #221e1f;
    font-weight: 500;
    text-align: center;
}
/* .about-us h2 {
    margin-bottom: 50px;
} */
.about-us p {
    text-align: justify;
    margin-top: 15px;
    font-size: 15px;
    line-height: 22px;
    color: #27445D;
    font-weight: 400;
}
.about-items {
    padding-top: 40px;
}
.about-item {
    display: flex;
    justify-content: center ;
    align-items: center;
    padding: 15px;
    min-width: 220px;
}
@media (max-width: 992px) { 
    .about-item {
        flex-direction: column;
        min-width: auto;
    }
}
.about-icon {
    width: 100px;
    height: 70px;
    text-align: center;
    margin-bottom: 10px;
}
.about-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-item h5 {
    font-size: 16px;
    line-height: 20px;
    color: #0b0a0a;
    font-weight: 400;
}
.about-item p {
    font-size: 14px;
    line-height: 22px;
    color: #83a7a5;
    font-weight: 400;
    text-align: center;
}
.our-team {
    padding-top: 70px;
    padding-bottom: 90px;
}
.our-team h2 {
    margin-bottom: 20px;
}
.bg-grey {
   background-color: #eef1ec;
}
.line {
    margin: 0 auto;
    width: 65px;
    height: 1px;
    background-color: #f5892d;
}

.our-team p {
    padding: 40px 0 80px 0;
    font-size: 15px;
    line-height: 22px;
    color: #0b0a0a;
    font-weight: 400;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.our-team-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.our-team-item {
    width: 30%;
    margin-right: 5%;
    margin: 20px;
}
/* .our-team-item:last-child {
    margin-right: 0;
} */
.our-team-items .image-block {
    height: 200px;
    margin-bottom: 15px;
}
.our-team-items .image-block img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.our-team-item h5 a {
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    text-decoration: none;
    color: #27445D;
    display: inline-block;
}
.position {
    font-size: 14px;
    line-height: 22px;
    color: #2e75b6;
    font-weight: 500;
}
@media (max-width: 992px) { 
    .our-team-items {
        flex-direction: column;
        align-items: center
    }
    .our-team-item {
        width: 100%;
        text-align: center;
        margin: 20px 0; 
    }
}

/* Gallery Section*/

.download {
    position: relative;
    background-image: url(images/layer1.png);
    height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}
.download:before {
    content: "";
    position: absolute;
    display: inline-block;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(11,10,10);
    background: linear-gradient(180deg, rgba(11,10,10,1) 4%, rgba(26, 77, 44, 0.7) 56%, rgba(255, 133, 9, 0) 100%);
    z-index: -1;
}
.download-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 200px;
}
.download-block p {
    font-size: 15px;
    line-height: 22px;
    color: #ffffff;
}
.download-block h3 {
    font-size: 28px;
    line-height: 38px;
    color: #ffffff;
    text-align: left;
}

.large-btn {
    padding: 14px 20px;
    background-color: #2e75b6;
    border-radius: 100px;
}
@media (max-width: 992px) { 
    .download {
        height: auto;
        display: flex;
        align-items: center;
        padding: 20px 0;
    }
    .download-block {
        flex-direction: column;
        height: auto;
        align-items: flex-start;
    }
    .left {
        margin-bottom: 20px;
    }
}
/* End Gallery Section*/

.footer-info {
    padding: 100px 0 80px 0;
}
.footer-info a, .footer-info h4 {
    display: inline-block;
    margin: 5px 0;
    min-height: 30px;
}
.info-blocks {
    margin-top: 30px;
    display: flex;
    justify-content: center
}
.info-block {
    width: 50%;
}
.info-block	h4 {
    font-size: 22px;
    line-height: 22px;
    color: #0b0a0a;
}
.list-items li{
    position: relative;
    font-size: 15px;
    line-height: 22px;
    color: #0b0a0a;
    margin-bottom: 5px;
}
.info-block input {
    max-width: 240px;
    height: 30px;
    border-radius: 5px;
    font-size: 14px;
    background-color: #EEF1EC;
    padding: 5px 30px 5px 15px;
    color: #0b0a0a;
    outline: none;
    border: 0;
}
input::placeholder {
    font-size: 13px;
    line-height: 18px;
    color: #83a7a5;
    font-weight: 400;
}
.send-email {
    display: inline-block;
    position: relative;
}
.send-icon {
    width: 18px;
    height: 18px;
    background-image: url("images/send.png");
    background-repeat: no-repeat;
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 5px;
    /**/
    /*top: 50%;*/
    /*transform: translateY(-50%);!*please read about this, when
    we should align center we can use transform: translate ... *!*/
    /**/
    cursor: pointer;
}
.heart {
    color: #e25555;
}
.footer-block {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #221e1f;
}
.footer-block p {
    font-size: 12px;
    line-height: 18px;
    color: #221e1f;
    font-weight: 400;
}
.footer-block .logo {
    display: flex;
    height: 70px;
}

.committees {
    background-color: #eef1ec;
    padding-top: 70px;
    padding-bottom: 90px;
}
.comm-blocks {
    display: flex;
    background-color: #fff;
    margin-bottom: 40px;
}
.comm-blocks .comm-block {
    flex: auto;
}
.comm-blocks .comm-block .comm-block-header { 
    background-color: #f58f3a;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    min-height: 38px;
    min-width: 320px;
}
.comm-block-sub-header {
    padding: 5px 20px;
    font-size: 14px;
    line-height: 20px;
    min-height: 32px;
    border-bottom: 1px solid #2e75b6;
}
.comm-block-content  {
    padding: 20px;
    font-size: 14px;
    line-height: 22px;
}
@media (max-width: 992px) { 
    .comm-blocks {
        flex-direction: column;
    }
    .comm-blocks .comm-block .comm-block-header {  
        min-width: auto;
        margin-bottom: 10px;
    }
    .d-none {
        display: none;
    }
    .comm-block-content  {
        padding: 0 20px;
    }
    .comm-block-sub-header {
        margin-bottom: 10px;
    }
    .comm-block:last-child .comm-block-content div:last-child {
        margin-bottom: 10px;
    }
}


.date-info-table {
    padding: 100px 0 80px 0;
}

 .date-info-table .cell.even {
    background-color: #fdcd042b;
 }

 .date-table {
    box-shadow: 1px 10px 23px 12px rgba(255,133,9,0.37);
    -webkit-box-shadow: 1px 10px 23px 12px rgba(255,133,9,0.37);
    -moz-box-shadow: 1px 10px 23px 12px rgba(255,133,9,0.37);
 }
 .date-table-header {
    display: flex;
    background-color: #2e75b6;
 }
 .date-table-header div {
    padding: 10px 20px;
    font-size: 18px;
    line-height: 22px;
    color: #fff;
    font-weight: 500;
 }
 .date-table-row {
    display: flex;
 }
 .date-table-row .cell {
    font-size: 15px;
    line-height: 22px;
    padding: 10px;
 }
 .date-table-row  .cell:first-child {
    font-weight: 600;
    width: 60%;
 }
 .date-table-row.even {
    background-color: #fdcd042b;
 }
 .date-table-row > div {
    flex: auto;
 }
 @media (max-width: 700px) { 
    .date-table-row .cell {
        font-size: 13px;
        padding: 10px 5px;
    }
 }

 .symposiumVenue {
    background-color: #eef1ec;
    padding-bottom: 90px;
    padding-top: 70px;
 }
 .venue-content {
    display: flex;
    margin-bottom: 30px;
 }
 .venue-content .text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 30px 0 0;
}
.venue-content .image-block {
    min-width: 250px;
}
.venue-content .image-block img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.recommended_hotels {
    padding-top: 40px;
}

.recommended_hotels h4 {
    font-size: 20px;
    line-height: 36px;
    font-weight: 600;
    text-align: center;
}

.hotels_list {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hotels_list .list_item {
    display: flex;
    align-items: center;
    padding: 15px;
    min-width: 220px;
}
@media (max-width: 576px) {
    .hotels_list {
        flex-direction: column;
    }
}
@media (max-width: 992px) {
    .venue-content .image-block {
        height: 500px;
    }
    .venue-content {
        flex-direction: column;
    }
    .venue-content .text-block {
        padding: 0 15px;
    }
    .venue-content .image-block {
        padding: 15px 0;
    }
}
.contact-us {
    background-color: #eef1ec;
    padding-bottom: 90px;
    padding-top: 70px;
}
.pad-70-90 {
    padding-bottom: 90px;
    padding-top: 70px;
}
.contact-block {
    margin-top: 50px;
}
.contact-row {
    display: flex;
    justify-content: center;
}
.contact-row div {
    width: 40%;
 }
.contact-text {
    padding-left: 60px;
    font-size: 15px;
    line-height: 22px;
    color: #27445D;
    font-weight: 400;
}
.contact-text p {
    display: flex;
    align-items: center;
}
.contact-text p svg {
   margin-right: 5px
}
.contact-icon {
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    display: inline-block;
}
.contact-icon.loc {
    background-image: url("images/loc.svg");
}

/* EQUIPMENT */
.eq-items {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
}
.text-image-items {
    position: relative;
    width: 32%;
    padding: 24px;
    border-radius: 3px;
    box-shadow: 0 0px 5px rgba(71, 71, 71, .2);
    margin-right: 2%;
    margin-bottom: 20px;
    transition: all ease 0.3s;
}
.text-image-items .coming-soon {
    position: absolute;
    display: inline-block;
    background: #f5892d;
    padding: 5px;
    font-size: 12px;
    right: 0;
    top: 0;
    color: #fff;
    border-radius: 3px;
}
.text-image-items:nth-child(3n) {
     margin-right: 0;
}
.text-image-items:hover {
    box-shadow: 1px 6px 16px 5px rgba(34, 30, 31, 0.37);
    -webkit-box-shadow: 1px 6px 16px 5px rgba(34, 30, 31, 0.37);
}

.text-image-items .text-item .simple-text {
    margin-top: 0;
}

 .text-image-items .image-block img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.text-image-items .text-item .eq-name {
    color: #221e1f;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 20px;
    transition: all ease 0.3s;
    min-height: 120px;
}
.text-image-items .text-item p i {
    color: #27445D;
    font-size: 12px;
    font-weight: 600;
}
.text-image-items:hover .text-item .eq-name {
 color: #f5892d;
}
.text-image-items:hover .text-item .eq-btn {
 color: #f5892d;
}
.eq-btn-block {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.eq-btn {
    display: inline-block;
    margin: 0;
    width: 140px;
    font-size: 12px;
    background: transparent;
    color: #767f86;
    border: 1px solid #d3d6d9;
    border-radius: 3px;
    text-align: center;
    padding: 10px;
    text-decoration: none;
}
@media (max-width: 992px) {
    .text-image-items {
        width: 48%;
    }
    .text-image-items {
        margin-right: 4%;
    }
    .text-image-items:nth-child(3n) {
     margin-right: 4%;
}
    .text-image-items:nth-child(2n) {
        margin-right: 0;
    }
}
@media (max-width: 576px) {
        .text-image-items {
        width: 100%;
        margin-right: 0!important ;
    }
}
/* RESEARCH */
.re-list {
    margin-top: 0;
    padding-left: 30px;
}
.re-research {
    display: inline-block;
    margin: 0 10px;
    background-color: #009e99;
    border-radius: 3px;
    padding: 5px;
    transition: all ease 0.3s;
    vertical-align: bottom;
}
.re-research svg {
    display: flex;
}
.re-scholar {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: 0 10px;
}
.comm-block-content img {
    display: inline-block;
    vertical-align: bottom;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* Conferances */
.res-conf-section {
    display: flex;
    flex-wrap: wrap;
}
.res-conf-section .res-conf-item {
    margin: 1%;
    width: 23%; 
    min-height: 200px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    border-radius: 3px;
    padding: 10px;
    box-shadow: 0 0px 10px rgba(71, 71, 71, .2);
    -webkit-transition: .3s linear;
    -moz-transition: .3s linear;
    -ms-transition: .3s linear;
    -o-transition: .3s linear;
    transition: .3s linear;
}
.res-conf-section .res-conf-item .conf-logo {
    height: 60px;
    margin-bottom: 20px;
}
.res-conf-section .res-conf-item .conf-logo img {
    height: 100%;
    object-fit: contain;
}
.res-conf-section .res-conf-item .conf-name {
    text-align: center;
    min-height: 57px;

}
.res-conf-section .res-conf-item .conf-name a {
    display: inline-block;
    text-decoration: none;
    color: #27445D;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    -webkit-transition: .3s linear;
    -moz-transition: .3s linear;
    -ms-transition: .3s linear;
    -o-transition: .3s linear;
    transition: .3s linear;
}
.res-conf-section .res-conf-item:hover {
     box-shadow: 0 0px 10px rgba(245, 143, 58, .2);
}
.res-conf-section .res-conf-item:hover .conf-name a{
    color: #f58f3a ;
}
@media (max-width: 992px) {
    .res-conf-section .res-conf-item {
        width: 31%;
    }
}
@media (max-width: 756px) {
    .res-conf-section .res-conf-item {
        width: 48%;
    }
}
@media (max-width: 576px) {
    .res-conf-section .res-conf-item {
        width: 100%;
    }
}
