:root {
    /* ======= COLORS  ======= */

    --black-1: #000;
    --black-2: #05141f;
    --black-3: #333;
    --black-4: #555;

    --white-1: #fff;
    --off-white-1: #f2f2f2;
    --off-white-2: #f8f8f8;
    --off-white-3: #eceded;
    --off-white-4: #e5e5e5;
    --off-white-5: #8d8d8d;

    --blue-1: #172430;
    --blue-2: #303c47;
    --blue-3: #232d36;
    --blue-4: #05141f;
    --blue-5: #010e18;

    --pink-1: #fcd0da;
    --pink-2: #ff8ca1;
    --pink-3: #ffe7ed;
    --pink-4: #fcf4f6;
    --pink-5: #f86a84;
    --pink-6: #ffc8d6;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    _border: 1px solid red;
}


body {
    color: var(--black-3);
    font-size: 16px;
    font-family: "Poppins";
    position: relative;
    padding: 20px 20px 0px 20px;
    /* overflow-y: hidden; */
}

.content {
    color: var(--blue-4);
}

a {
    display: inline-block;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Common */

.typed-cursor {
    opacity: 0;
    display: none;
}

.spacer {
    padding: 0px 5px;
    color: var(--black-3)
}

.spacer--m {
    padding: 0px 10px;
    color: var(--black-3)
}

.center-me {
    text-align: center;
    margin: 0 auto;
}

.isbold {
    font-weight: bold;
}

/* Layout */

.row {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.row:not(:last-child) {
    margin-bottom: 30px;
}

.col-1-of-2 {
    width: calc((100% - 40px) / 2);
}

.col-1-of-3 {
    width: calc((100% - 2 * 40px) / 3);
}

.col-1-of-4 {
    width: calc((100% - 3 * 40px) / 4);
}



[class*='col-'] {}

[class*='col-']:not(:last-child) {
    margin-right: 40px;
}

[class*='container']:not(:last-child) {
    margin-bottom: 80px;
}


section {
    padding: 110px 40px 90px 40px;
}

.section-small {
    padding: 50px 0px;
}

section .content {
    padding-left: 50px;
}

section [class^="content"] p {
    font-family: 'Montserrat';
    font-weight: 400;
    line-height: 2;
    width: 95%;
    /* margin: 0 auto 20px; */
    margin-bottom: 20px;
    position: relative;
}

.para-strong {
    font-size: 14px;
    font-weight: 600 !important;
    font-style: italic;
    margin-top: 80px;
    text-align: center;
}




a {

    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* UI */
.btn {
    border-radius: 4px;
}

.btn--center {
    text-align: center;
}

.btn--small {
    padding: 5px 15px;
    font-size: 14px;
}

.btn--medium {
    padding: 10px 20px;
    font-size: 16px;
}


.btn--large {
    padding: 15px 30px;
    font-size: 16px;
}


.btn--black {
    background: var(--black-2);
    border: 1px solid var(--black-2);
    ;
    color: var(--white-1);
}

.btn--black:hover {
    background: var(--black-3);
    border: 1px solid var(--black-3);
    ;
    color: var(--white-1);
}

/* Mar. 19, 2024 */
.btn--blue {
    background: var(--blue-2);
    border: 1px solid var(--blue-2);
    ;
    color: var(--white-1);
}

.btn--blue:hover {
    background: var(--blue-3);
    border: 1px solid var(--blue-3);
    ;
    color: var(--white-1);
}

.btn--blue-2 {
    background: var(--blue-4);
    border: 1px solid var(--blue-4);
    ;
    color: var(--white-1);
}

.btn--blue-2:hover {
    background: var(--blue-2);
    border: 1px solid var(--blue-2);
    color: var(--white-1);
}


.btn--white {
    background: var(--white-1);
    border: 1px solid var(--black-1);
    ;
    color: var(--black-1);
}

.btn--white:hover {
    background: var(--black-1);
    border: 1px solid var(--black-1);
    color: var(--white-1);
}

.btn--pdf::before {
    content: '';
    display: inline-block;
    background: url(../css/icons/UI-icons/donwload_white.svg) no-repeat;
    height: 11px;
    width: 15px;
    background-size: 15px;
    background-position: center;
}

.header .heading-primary--main {
    backface-visibility: visible;
    font-size: 90px;
    font-weight: 300;
    font-family: 'Poppins', Arial;
    line-height: 0.9;
    color: var(--pink-1);
    opacity: 0;
    animation: moveInLeft 0.3s 0.5s linear forwards;
}


.heading-primary--main>.first {
    font-size: 110px;
    font-weight: 700;
    font-family: 'Poppins', Arial;
    line-height: 0.9;
    color: var(--pink-1);
    letter-spacing: 1px;
}

.heading-primary--main>.second {
    font-size: 90px;
    font-weight: 300;
    font-family: 'Poppins', Arial;
    line-height: 0.9;
    color: var(--pink-1);
}


.heading-primary--sub {
    display: inline-block;
    font-size: 36px;
    font-family: 'Montserrat', Arial;
    font-weight: 200;
    color: var(--white-1);
    opacity: 0;
    backface-visibility: hidden;
    animation: moveInLeft 0.3s 1s linear forwards;
    height: 44px;

    width: 100%;
}


.heading-secondary {
    display: inline-block;
    margin-bottom: 30px;
    z-index: 5;
    position: relative;
}

.heading-secondary>span {
    font-size: 21px;
    font-family: 'Poppins';
    font-weight: 800;
    color: var(--pink-2);
    text-transform: uppercase;
    letter-spacing: 4px;
}

.heading-secondary>p {
    font-size: 54px;
    font-family: 'Montserrat', 'Poppins';
    font-weight: 700;
    color: var(--black-3);
    text-transform: uppercase;
    line-height: 1;
}

.heading-secondary .is-small {
    text-transform: lowercase;
}

.heading-tier {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 21px;
}

.heading-tier>span {
    font-size: 21px;
    font-family: 'Poppins';
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
}


/* MODAL */
.modal-body {
    background: rgba(0, 0, 0, 0.8);
    background-size: cover;
    background-position: center;
    position: fixed;
    overflow: hidden;
    background-attachment: fixed;
    display: none;
    width: 100%;
    z-index: 999999999999999999999;
}

.modal-body.active {
    display: flex;
}

/* PRELOADER */

.modal__preloader {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999999999999999999;
    background: var(--pink-1);
    opacity: 0;
}

.modal__preloader.active {
    display: flex;
    opacity: 1;
}

.modal__preloader>img {
    width: 100px;
}

.preloader__loader {
    width: 60px !important;
}


/* MODAL - NAV MODAL */

.modal__nav-show {
    background: var(--pink-2);
    background-size: cover;
    background-position: center;
    position: fixed;
    overflow: hidden;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    padding-bottom: 50px;
}

.modal__nav-show .close-box {
    display: inline-block;
    background: url(../img/close.svg) no-repeat;
    height: 40px;
    width: 40px;
    background-size: 40px;
    padding: 10px;
    background-position: center;
    position: absolute;
    top: 35px;
    right: 50px;
    cursor: pointer;
}

.modal__nav-show>ul {
    display: flex;
    flex-direction: column;
    padding: 100px 40px 0px 40px;
    margin-bottom: 100px;
    width: 100%;
    overflow-y: scroll;
}

.modal__nav-show>ul>li {
    opacity: 0;
    animation: moveInLeft 0.2s 0.8s linear forwards;
    list-style: none;
    margin-bottom: 15px;
}

.modal__nav-show>ul>li.active>a {
    color: var(--white-1);
}


.modal__nav-show>ul>li>a {
    font-size: 48px;
    color: var(--pink-6);
    text-decoration: none !important;
}

.modal__nav-show>ul>li>a::after {
    content: '';
    display: block;
    background: transparent;
    width: 0px;
    height: 4px;
    opacity: 0;
    transform: translate(5px, -5px);
}


.modal__nav-show>ul>li.active>a::after {
    content: '';
    display: block;
    background: var(--white-1);
    width: 30px;
    height: 4px;
    transform: translateY(-5px);
    animation: width0to30 0.2s 0.5s linear forwards;
}


.modal__nav-show>ul>li>ul {
    margin-bottom: 3px;
}

.modal__nav-show>ul>li>ul>li {
    padding-left: 50px;
}

.modal__nav-show>ul>li>ul>li>a {
    font-size: 40px;
    color: var(--black-4);
    text-decoration: none !important;
}

.modal__nav-show>ul>li>ul>li.active>a {
    color: var(--black-1);
}

.modal__nav-show>ul>li:hover>a {
    color: var(--white-1);
}

.modal__nav-show>ul>li>ul>li:hover>a {
    color: var(--black-1);
}

.modal__nav-show>ul>li>ul>li>a::after {
    content: '';
    display: block;
    background: transparent;
    width: 0px;
    height: 3px;
    opacity: 0;
    transform: translateY(-5px);
}


.modal__nav-show>ul>li>ul>li.active a::after {
    content: '';
    display: block;
    background: var(--white-1);
    width: 30px;
    height: 3px;
    transform: translateY(-5px);
    animation: width0to30 0.2s 0.5s linear forwards;
}


.nav-show__links {
    display: flex;
    width: 100%;
    flex-direction: column;
    padding: 0px 40px 0px 40px;
    opacity: 0;
    animation: moveInLeft 0.2s 0.5s linear forwards;
}


.nav-show__links>a {
    font-size: 21px;
    color: var(--black-3);
}

.nav-show__links>p {
    font-size: 48px;
    color: var(--off-white-3);
    text-transform: uppercase;
    line-height: 1.1;

}



/* HAMBURGER */
.hamburger-icon__container {
    position: fixed;
    right: 30px;
    top: 15px;
    display: none;
    cursor: pointer;
    padding: 16px;
    background: var(--pink-2);
    z-index: 999999999;
    opacity: 0.9;

}

.hamburger-icon__container:hover {
    opacity: 1;
}

.hamburger-icon__container>span {
    display: inline-block;
    height: 31px;
    width: 33px;
    background: url(../img/hamburger--white.png) no-repeat;
    background-size: 33px;

}

.hamburger-icon__container.active {
    display: inline-block;
}

/* Accordion */

.acc {
    border: 1px solid var(--off-white1);
    border-radius: 3px;
}

.acc .acc-question {
    position: relative;
    cursor: pointer;
    background: var(--gray-3);
}


.acc .acc-question__para {
    width: 100%;
    position: relative;
    padding: 10px 0px 15px 3%;
    border-bottom: 1px solid var(--off-white-5);
}


.acc .acc-question__para>h4 {
    font-size: 36px;
}


.acc .acc-question__dropdown-icon--1 {
    position: absolute;
    display: inline-block;
    top: 27px;
    right: 25px;
    background: url('../img/Dropdown.svg') no-repeat;
    height: 19px;
    width: 20px;
    background-position: center;
    background-size: 19px;

}

.acc .acc-question__dropdown-icon--2 {
    position: absolute;
    top: 27px;
    right: 25px;
    background: url('../img/Dropdown.svg') no-repeat;
    height: 19px;
    width: 20px;
    background-position: center;
    background-size: 19px;
    transform: rotate(180deg);
    display: none;
}


.acc .acc-answer {
    display: none;
    position: relative;
    background: var(--off-white1);
    border: 1px solid var(--off-white1);
}

.acc .acc-answer.active {
    display: block;
}

.acc .acc-answer__main {
    background-color: var(--pink-4);
}


.acc .acc-answer__para {
    width: 90%;
    position: relative;
    padding: 20px 0px 30px 3%;
    margin-bottom: 10px;
}

.acc .acc-answer__para h4 {
    font-size: 18px;
    margin-bottom: 20px;
}


.acc .acc-answer__para p {
    display: inline-block;
    font-size: 18px;
    color: var(--black-2);
    margin-bottom: 10px;
}

.acc .acc-answer__para a {
    text-decoration: none;
    color: var(--pink-2);
    font-size: 14px;
}

.acc .acc-answer__para a:hover {
    text-decoration: underline;
}


.acc .acc-answer__para p.zero-results {
    font-size: 18px;
    font-weight: bold;
    color: var(--gray-7)
}



/* Content */

/* HEADER - HEADER MAIN */

.header {
    /* height: 95vh; */
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6)), url('../img/BG\ SEXPONSIBLYLOGO-extended.png') no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}


.header-top {
    height: 80px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    z-index: 99999999;
}


.header-top>.row {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0px 20px;
}

.header-top>.row>ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.header .header-top>.row>ul {
    opacity: 0;
    animation: moveInLeft 0.3s 1s linear forwards;
}

.header-top>.row>ul>li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    list-style: none;
    border-bottom: 2px solid transparent;

}

.header-top>.row>ul>li:not(:last-child) {
    margin-right: 30px;
}

.header-top>.row>ul>li>a {
    color: var(--white-1);
    font-weight: 300;
    text-decoration: none !important;
}

.header-top>.row>ul>li.active {
    border-bottom: 2px solid var(--pink-1);
}

.header-top>.row>ul>li.active>a {
    color: var(--pink-1);
}

.header-top>.row>ul>li:hover {
    border-bottom: 2px solid var(--pink-1);
}

.header-top>.row>ul>li:hover>a {
    color: var(--pink-1);
}



.contraList>span {
    display: inline-block;
    height: 10px;
    width: 16px;
    background: url(../img/angle_down_icon--pink.png) no-repeat;
    background-size: 15px;
}

.open-li {

    position: relative;
}

.open-li>ul {
    width: 200px;
    height: 140px;
    position: absolute;
    top: 26px;
    left: 0;
    border-radius: 3px;
    display: none;
    z-index: 10;
}


.open-li.isopen ul {
    display: block
}

.open-li>ul>li {

    background: var(--white-1);
    cursor: pointer;
}

.open-li>ul>li>a {
    display: block;
    padding: 10px 15px;
    color: var(--black-1);
    font-size: 14px;

}

.open-li>ul>li:hover {
    background: var(--pink-1);
}

.open-li>ul>li:hover>a {
    text-decoration: initial !important;
}


.open-li:hover>ul {
    display: block;
}

.header .header-top>.row>.header__logo-box {
    opacity: 0;
    animation: moveInLeft 0.3s 0.5s linear forwards;
}

.header-top>.row>.header__logo-box>img {
    height: 50px;
}

.header__text-box {
    padding: 250px 0px 200px 45px;
}

.header__learnmore {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: moveDown 2s 1.2s linear forwards infinite;
    z-index: 10;
}


.learnmore__icon {
    display: inline-block;
    background: url(../img/scroll\ down.svg) no-repeat;
    height: 75px;
    width: 95px;
    background-size: 95px;
    position: relative;
}


.item-bg-1 {
    position: absolute;
    right: -45px;
    top: 16%;
    opacity: 0.2;
    filter: blur(4px);
    animation: blurLoop 2s linear both infinite;
}

.manwoman {
    display: inline-block;
    background: url(../img/manwoman--2.png) no-repeat;
    height: 630px;
    width: 630px;
    background-size: 630px;
    position: relative;
}

.header-content {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6)), url('../img/BG\ SEXPONSIBLYLOGO-extended.png') no-repeat;
    background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    _background-attachment: fixed;
    z-index: 10;
}

.header-content .header__text-box {
    padding: 350px 0px 50px 30px;
}

.header-content .header__text-box .row> h1::after {
    content: '';
    display: block;
    width: 130px;
    height: 5px;
    _margin-top: 10px;
    background-color: var(--pink-2);
}

.header-content .header__text-box> .row > h1 {
    color: var(--white-1);
    font-size: 54px;
    width: 70%;
}


.sources>h3 {
    font-size: 16px;
}


.sources>ul {
    list-style: none;
}

.sources>li {
    font-size: 10px;
    display: block;
    margin-bottom: 5px;
}

/* SECTION */

/* INDEX - SECTION - ABOUT  */

.section-about {
    overflow: hidden;
    position: relative;
}

.section-about .row {
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.section-about .bg {
    position: absolute;
    bottom: -124px;
    right: 0;
    z-index: 2;
    opacity: 0.25;
}

.section-about .bg>img {
    height: 700;
}

/* Section Small Index */

.section-respect {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8)), url(../img/bg-wallpaper.jpg) no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
}

.section-respect .row {}


.section-respect p {
    color: white;
    width: 75%;
    font-style: italic;
    font-size: 21px;
    margin: 0 auto;
    /* line-height: 1.5; */
    text-align: center;
}

/* INDEX - SECTION - CORE VALUES  */

.section-corevalues {
    position: relative;

}

.section-corevalues::before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background: url('../img/corevalues-bg.svg') no-repeat;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
    background-attachment: fixed;
}

.section-corevalues .content .row {
    display: flex;
    flex-direction: space-between;
    width: 100%;
    margin-bottom: 50px;
}

.section-corevalues .content .row:not(:last-child) {
    margin-bottom: 30px;
}

.corevalues-header {
    text-align: center;
    width: 50%;
    margin: 0 auto;
}



.corevalues-header__image-box {
    width: 250px;
    height: 235px;
    margin: 0 auto;
    border-radius: 100%;
    margin-bottom: 15px;
}

.corevalues-header__image-box>img {
    height: 100%;
    width: 100%;
    border-radius: 100%;
    border: 7px solid #ff8ca1;
    transition: all 0.3s ease;
}

.corevalues-header .heading-tier span {
    font-size: 21px;
}

.corevalues-header__para {
    font-size: 16px;
    width: 80%;
    margin: 0 auto;
}

.core-values {
    text-align: center;
    margin: 0 auto;
    cursor: pointer;
}

.core-values__image-box {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 100%;
    margin-bottom: 20px;
}

.core-values__para {
    width: 80%;
    margin: 0 auto;
}

.core-values__image-box>img {
    height: 100%;
    border-radius: 100%;
    border: 7px solid #ff8ca1;
    transition: all 0.3s ease;
}

.core-values:hover .core-values__image-box>img {
    transform: scale(1.03);
    transition: all 0.3s ease;
}


/* STI */

/* About STI */

.section-aboutsti {
    padding: 110px 40px 0px;
}

.section-aboutsti .row {}



.section-aboutsti .row .content--half {
    display: flex;
}

.section-aboutsti .row .content--half>div {
    width: 50%;
}

.section-aboutsti .row .content--half>div:nth-child(1) {}

.section-aboutsti .image-box {
    overflow: hidden;
    background: url(../img/sti-about--2.jpg) no-repeat;
    height: 100%;
    width: 100%;
    background-size: 180%;
    filter: brightness(0.5);
}

.section-aboutsti .row .content--half>div:nth-child(2) {
    padding: 0px 20px 20px 50px;
}

/* About STI - Common */

.section-sticommon {
    padding: 150px 40px 0px;
}

.sti-common {}


.section-sticommon .content .row {
    display: flex;
    flex-direction: space-between;
    width: 100%;
    margin-bottom: 50px;
}

.sti-common__image-box {
    height: 225px;
}

.sti-common__image-box>img {
    height: 100%;
}

.sti-common>h3 {
    padding: 10px 0px;
    font-size: 21px;
}

.sti-common>ul {
    padding-left: 15px;
}


.sti-common>ul>li {
    list-style: disc;
    font-size: 16px;
}

.sti-common>ul>li:not(:last-child) {
    margin-bottom: 10px;
}

/* STI COMMON - STI SIGN */

.section-stisign {
    padding: 50px 40px 50px;
}


.section-stisign .content .row {
    display: flex;
    flex-direction: space-between;
    width: 100%;
    margin-bottom: 30px;
}

.sti-sign {
    cursor: pointer;
    text-align: center;
}

.sti-sign__image-box {
    height: 200px;
    width: 200px;
    border-radius: 100%;
    margin: 0 auto;
    border: 7px solid #ff8ca1;
}

.sti-sign__image-box>img {
    width: 100%;
    border-radius: 100%;
    height: 100%;
    filter: blur(3px);
    transition: all 0.3s ease;

}

.sti-sign>h3 {
    padding: 10px 0px;
    font-size: 21px;
}

.sti-sign:hover .sti-sign__image-box>img {
    filter: blur(0px);
    transition: all 0.3s ease;
}

/* STI COMMON - STI SEC SMALL */

.section-stisecsmall {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8)), url(../img/bg-wallpaper.jpg) no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
}

.section-stisecsmall p {
    color: white;
    width: 75%;
    font-style: italic;
    font-size: 21px;
    margin: 0 auto;
    /* line-height: 1.5; */
    text-align: center;
}

/* STI COMMON - STI IMAGE */

.section-stiimg {
    background: var(--pink-1);
    padding: 50px 40px 50px 40px;
}

.stiimg {
    width: 100%;

}

.stiimg>img {
    width: 100%;
}

/* STI COMMON - SOURCEs */

.section-stisources {
    padding: 50px 40px;
}


/* CONTRACEPTIVES */


/* Products Sections */
.product {
    padding: 20px 15px;
    border-radius: 5px;
}



.pills_image-box {
    width: 100%;
    margin-bottom: 15px;
}

.pills_image-box>img {
    width: 235px;
}

.product__price-box,
.product__title-box {
    margin-bottom: 5px;
}

.product__title-box>h3 {
    font-size: 21px;
}

.product__title-box>p {
    font-size: 14px;
    color: var(--off-white-5);
}

.product__title-box>span {
    font-size: 14px;
    color: var(--pink-2);
}


.product__price-box>p {
    font-size: 14px;
}

.product__price-box>p {
    font-size: 16px;
    font-weight: bold;

}

.product__price-box>span {
    font-size: 14px;
    color: var(--pink-2);
}


.product__buy>p {
    font-size: 16px;
    font-weight: bold;
}

.product__buy>span {
    font-size: 14px;
    color: var(--pink-2);
}

.product:hover {
    background-color: var(--off-white-1)
}

.product:hover h3 {
    text-decoration: underline;
}


/* CONTRACEPTIVES - MAIN */


/* CONTRACEPTIVES - MAIN - RECOMMEND */

.section-contrarecommend {
    padding: 110px 40px 40px 40px;
}

.section-contrarecommend .row {
    display: flex;
    flex-direction: space-between;
    width: 100%;
    margin-bottom: 50px;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand__image-box {
    width: 250px;
    height: 250px;
    margin-bottom: 10px;
}

.brand__image-box>img {
    height: 100%;

}

.brand>h3 {
    font-size: 21px;
    margin-bottom: 10px;
}


/* CONTRACEPTIVES - MAIN - TYPE */

.section-contratype {
    padding: 60px 40px 60px 40px;
    background: var(--pink-4);
}

.section-contratype .row {
    display: flex;
    flex-direction: space-between;
    width: 100%;
    margin-bottom: 20px;
}

.type {
    padding: 30px 0px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    color: var(--black-1);
    transition: all 0.3s ease;
}

.type__image-box {
    height: 250px;
    width: 250px;
    border-radius: 100%;
    border: 9px solid var(--pink-2);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.type__image-box>img {
    border-radius: 100%;
    height: 100%;
}

.type>h3 {
    color: var(--black-1);
    font-size: 21px;
}

.type:hover {
    _background-color: rgba(255, 255, 255, 0.6);

}

.type:hover .type__image-box {
    transform: scale(1.03);
    transition: all 0.3s ease;
}

/* CONTRACEPTIVES - MAIN - HOW EFFECTIVE */

.section-contraeffect {
    padding: 60px 40px 60px 40px;
    background: var(--white-1);
}

.section-contraeffect .row {
    margin-bottom: 10px;
}

.effect {
    width: 100%;
    _height: 100%;
}

.effect>img {
    width: 100%;
}

/* CONTRACEPTIVES - MAIN - SOURCES */

.section-contrasources {
    padding: 50px 40px;
    background: var(--pink-4);
}

/* CONTRACEPTIVES - CONDOMS */

.section-condoms {
    padding: 100px 50px 50px;
}

.section-condoms .row {
    display: flex;
    flex-direction: space-between;
    width: 100%;
    margin-bottom: 50px;
}

.section-condoms .row:nth-child(1) {
  margin-bottom: 10px;
}

.section-condoms .row .row-extend {
    flex: 1;
    padding: 20px;
}

.section-condoms .product_image-box {
    width: 100%;
    margin-bottom: 10px;
}

.section-condoms .product_image-box>img {
    width: 200px;
}


/* 
Condom - Condom Note */

.row-extend .note div {}

.row-extend .note div>p {
    font-size: 16px;
    margin-bottom: 5px;
}

.row-extend .note>h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.row-extend .note>.note-gender {
    font-size: 18px;
}

/* CONTRACEPTIVES - PILLS */



.section-pills {
    padding: 100px 50px 0px;
}

.section-pills .row {
    display: flex;
    flex-direction: space-between;
    width: 100%;
    margin-bottom: 50px;
}

/* CONTRACEPTIVES - CONDOMS - ABOUT PILLS */

.section-aboutpills {
    padding: 50px 40px 90px 40px;
    background: var(--pink-4);
}

.aboutpills {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}


.aboutpills__image-box {
    display: flex;
    height: 230px;
    margin-bottom: 30px;

}

.aboutpills__image-box>img {
    width: 33.333%;
}


.aboutpills>div:nth-child(2) {
    text-align: center;
    width: 70%;
    margin: 0 auto;
}

.aboutpills>div:nth-child(2)>p {
    font-size: 16px;
    margin-bottom: 20px;
}

.aboutpills>div:nth-child(2)>p:nth-child(2) {
    font-size: 21px;
    color: var(--pink-5);
}

/* CONTRACEPTIVES - CONDOMS - Injection UID */


.section-inject .row {
    display: flex;
    flex-direction: space-between;
    width: 100%;
    margin-bottom: 10px;
}


.section-inject .product_image-box > img {
    width: 200px;
}



/* ARTICLES */

/* ARTICLES - ARTICLE */

.section-articlesarticle {
    padding: 110px 40px 75px;
}

.article {
    display: flex;
    flex-direction: column;
    padding: 20px;
    color: var(--black-1);
    text-decoration: none !important;
    cursor: pointer;
}

.article>h3 {
    font-size: 21px;
}

.article__image-box {
    width: 100%;
    margin-bottom: 10px;
}

.article__image-box>img {

    height: auto;
    width: 100%;
}

.article__author-name {
    font-size: 18px;
    text-decoration: none;
    color: var(--pink-2);
}

.article__date-published {
    font-size: 14px;
    text-decoration: none;
    color: var(--off-white-5);
}

.article:hover {
    background: var(--pink-4);
    transition: all 0.2s ease;
}

.article:hover>h3 {
    text-decoration: underline;
}


/* ARTICLES - VIDEO */

.section-articlesvideo {
    background: var(--pink-3);
    padding: 75px 40px 50px;
}

.section-articlesvideo .row {
    display: flex;
    flex-direction: space-between;
    width: 100%;
    margin-bottom: 50px;
}

/* Video */

.video {
    cursor: pointer;
    padding: 20px;
}

.video-box {
    margin-bottom: 15px;
}

.video-box iframe {
    width: 100%;
    height: 350px;
}

.video>h3 {
    font-size: 21px;
}

.video:hover {
    background: var(--pink-4);
    transition: all 0.2s ease;
}

/* FAQ */

/* FAQ -FAQ MAIN*/

.section-faqaccordion {
    padding: 110px 40px 75px;
}

.accordion-list {
    margin: 10px 0 80px;
}

/* OUR TEAM */

/* OUR TEAM - TEAM */

.section-ourteam {
    padding: 110px 40px 75px;

}

.section-ourteam::before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background: url(../img/Wave--2.svg) no-repeat;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
    background-attachment: fixed;
}

.team-container {
    width: 100%;
}

.team-container>.member-box:nth-child(1) {
    display: flex;
    text-align: center;
    align-items: center;
}

.team-container>.member-box:nth-child(2) {
    display: flex;
    align-items: center;
}

.team-container>.member-box:nth-child(2)>div {
    width: 50%;
}

.team-container>.member-box:nth-child(3) {
    display: flex;
    align-items: center;
}

.team-container>.member-box:nth-child(3)>div {
    width: 33.333%;
}

.team-container>.member-box:not(:last-child) {
    margin-bottom: 70px;
}

.member {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    cursor: pointer;
}

.member__image-box {
    position: relative;
    height: 250px;
    width: auto;
    margin-bottom: 20px;
}

.member__image-box .box {
    display: inline-block;
    height: 180px;
    width: 200px;
    filter: blur(50px);
    background: var(--pink-2);
    position: absolute;
    top: 20%;
    left: 29%;
    border-radius: 100%;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.member__image-box>img {
    height: 100%;
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

.member>h3 {
    position: relative;
    z-index: 10;
    font-size: 21px;
}

.member:hover .member__image-box .box {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.member:hover .member__image-box>img {
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

/* .member:hover h3 {
    text-decoration: underline;
} */

/* OUR TEAM - VISIT US */

.section-visitus {
    padding: 75px 40px 150px;
    position: relative;
    z-index: 1;
    background-color: var(--white-1);
}

.section-visitus::before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background: url(../img/UPHSL-Binan.png) no-repeat;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
    background-attachment: fixed;
}

.visitus__info-box {
    margin-bottom: 30px;
}

.visitus__info-box>h3 {
    margin: 12px 0px 0px;
    font-size: 21px;
}

.visitus__info-box>p {
    margin-bottom: 2px;
}

.visitus__info-box > a {
    color: var(--pink-5);
    text-decoration: underline;
}

.visitus__image-box {}

.section-visitus .row .content--half {
    display: flex;

}

.section-visitus .row .content--half>div {
    width: 50%;
}

.section-visitus .visitus__image-box {
    overflow: hidden;
    background: url(../img/uphs-binan.jpg) no-repeat;
    height: 600px;
    width: 100%;
    background-size: 180%;
    background-position: center;
}

.visitus__map-box {
    width: 100%;
    height: 100%;
}

.visitus__map-box>iframe {
    width: 100%;
    height: 100%;
}

/* footer*/

footer {
    background-color: var(--black-1);
    padding: 30px 0px;
    position: relative;
    z-index: 1;
}

footer .row {
    text-align: center;
}

.footer__para {

    font-weight: 300;
}

.footer__para span {
    font-size: 12px;
    color: var(--off-white-5);
}

.footer-link {
    text-decoration: underline;
}

.footer-school {
    font-weight: bold;
    font-size: 14px;
}

.footer-link:hover {
    cursor: pointer;
    color: var(--off-white-1);
    text-decoration: underline;
}

/* ANIMATION */

@keyframes ltrShow {
    0% {
        transform: translateX(-1px);
    }

    100% {
        transform: translateX(10px);
        opacity: 1;
    }
}


@keyframes moveInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(0);
        transform: translate(0)
    }
}

@keyframes moveDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }
}

@keyframes blurLoop {
    0% {
        opacity: 0.2;
        filter: blur(4px);
    }

    100% {
        opacity: 0.1;
        filter: blur(5px);
    }
}

@keyframes width0to30 {
    0% {
        opacity: 0;
        width: 0;
    }

    100% {
        opacity: 1;
        width: 50px
    }
}


@keyframes width0to20 {
    0% {
        opacity: 0;
        width: 0;
    }

    100% {
        opacity: 1;
        width: 20px
    }
}





/* RESPONSIVE */

/* RESPONSIVE - 1024px*/

@media screen and (max-width: 1024px) {

    body {
        padding: 0px;
    }

    .hamburger-icon__container {

        display: block;
    }

    /* Content */

    .header {
        /* height: 95vh; */
        background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6)), url(../img/BG\ SEXPONSIBLYLOGO-extended.png) no-repeat;
        background-size: 1200px;
        background-position: 50% 0;
        position: relative;
        overflow: hidden;
        background-attachment: fixed;
    }

    .header__text-box {
        padding: 200px 0px 150px 45px;
    }

    .header .header-top>.row>.header__logo-box {
        margin-top: 15px;
    }

    .header-top>.row>ul {
        display: none;
    }

    .heading-primary--main>.first {
        font-size: 86px;
    }

    .heading-primary--main>.second {
        font-size: 63px;
    }


    /* INDEX - SECTION  */
    .item-bg-1 {
        display: none;
    }

    /* CONTRACEPTIVES - INJECTION & IUD */

    .section-inject>.row {
        display: flex;
        flex-direction: column;

    }

    .section-inject>.row .col-1-of-4 {
        width: 100%;
    }

    .product_image-box {
        width: 300px;
        height: 260px;
    }

    /* OUR TEAM */

    .member__image-box {
        height: 200px;
        margin-bottom: 10px;

    }

    .section-visitus .visitus__image-box {
        height: 400px;
        background-size: cover;
    }

}


@media screen and (max-width: 768px) {

    /* Content */

    section {
        padding: 60px 30px 60px 30px !important;
    }

    section .content {
        padding-left: 10px;
    }

    .section-small {
        padding: 40px 0px;
    }

    .header {
        /* height: 95vh; */
        background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6)), url(../img/BG\ SEXPONSIBLYLOGO-extended.png) no-repeat;
        background-size: 900px;
        background-position: 50% 0;
        position: relative;
        overflow: hidden;
        background-attachment: fixed;
    }

    .header__text-box {
        padding: 200px 0px 130px 30px;
    }

    .heading-secondary {
        margin-bottom: 30px;
    }

    .heading-secondary>p {
        font-size: 42px;
        width: 100%;
    }




    .heading-primary--main>.first {
        font-size: 63px;
    }

    .heading-primary--main>.second {
        font-size: 48px;
    }

    .header-content .header__text-box {
        padding: 300px 0px 50px 20px !important;
    }

    .header-content .header__text-box > .row h1 {
        width: 95%;
        color: var(--white-1);
        font-size: 48px;
    }

    .header__logo-box {
        position: relative;
        top: 5px;
    }
    
    .header__logo-box {
        padding-top: 10px;
    }

    .header-content .header__text-box .row> h1::after {
        content: '';
        display: block;
        width: 80px;
        height: 5px;
        _margin-top: 10px;
        background-color: var(--pink-2);
    }

    /* NAV */

    .modal__nav-show .close-box {
        top: 30px;
        right: 40px;
    }

    /* HAMBURGER  */
    .hamburger-icon__container {
        right: 20px;
        top: 16px;
        padding: 12px;
    }

    .hamburger-icon__container>span {
        display: inline-block;
        height: 30px;
        width: 30px;
        background: url(../img/hamburger--white.png) no-repeat;
        background-size: 31px;
    }

    /* Accordion */

    .acc .acc-question__para>h4 {
        font-size: 21px;
        width: 70%;
    }

    .acc .acc-question__para {
        width: 100%;
        position: relative;
        padding: 10px 0px 10px 1.2%;
        border-bottom: 1px solid var(--off-white-5);
    }

    .acc .acc-question__dropdown-icon--1 {
        position: absolute;
        display: inline-block;
        top: 30%;
        right: 20px;
        background: url(../img/Dropdown.svg) no-repeat;
        height: 19px;
        width: 20px;
        background-position: center;
        background-size: 15px;
    }

    .acc .acc-question__dropdown-icon--2 {
        position: absolute;
        top: 30%;
        right: 20px;
        background: url(../img/Dropdown.svg) no-repeat;
        height: 15px;
        width: 15px;
        background-position: center;
        background-size: 15px;
        transform: rotate(180deg);
        display: none;
    }

    .acc .acc-answer__para p {

        font-size: 16px;
    }


    /* INDEX - SECTION  */
    .para-strong {
        margin-top: 45px;
    }

    .section-respect p {
        font-size: 18px;
    }

    .section-about .bg {
        position: absolute;
        bottom: -124px;
        right: -160px;
        z-index: 2;
        opacity: 0.2;
    }

    .section-corevalues::before {

        background-position: 76% -100%;
    }

    .corevalues-header h3 {
        margin-bottom: 0px;
    }

    .corevalues-header__image-box {
        width: 200px;
        height: 180px;
        margin-bottom: 15px;
    }

    .core-values__para,
    .corevalues-header__para {
        font-size: 14px;
        width: 100% !important;
    }



    .core-values__image-box {
        width: 180px;
        height: 180px;
        margin-bottom: 15px;
    }

    /* STI */

    .section-aboutsti .row .content--half>div:nth-child(1) {
        display: none;
    }

    .section-aboutsti .row .content--half>div {
        width: 100%;
    }

    .section-aboutsti .row .content--half>div:nth-child(2) {
        padding: 0px 20px 20px 0px;
    }


    .content--half .heading-tier {
        margin-top: 10px;
    }

    .section-sticommon {
        padding: 0px 30px 30px 30px !important;
    }

    .section-sticommon .content .row {
        display: flex;
        flex-direction: column;
    }

    .sti-common__image-box {
        height: 200px;
    }

    .section-sticommon .content .row .col-1-of-2 {
        width: 100%;
    }

    .section-sticommon .content .row .col-1-of-2:not(:last-child) {
        margin-bottom: 30px;
    }

    .section-stisign {
        padding: 0px 30px 0px 30px !important;
    }

    .section-stisign .content .row {
        display: flex;
        flex-direction: column;
    }

    .section-stisign .content .row .col-1-of-4 {
        width: 100%;
    }

    .section-stisign .content .row .col-1-of-4:not(:last-child) {
        margin-bottom: 30px;
    }


    .sti-sign>h3 {
        padding: 10px 0px;
        width: 80%;
        margin: 0 auto;
    }

    .section-stiimg {
        padding: 30px 30px 30px 30px !important;
    }

    .stiimg {
        width: initial;
        height: initial;
    }

    .stiimg>img {
        width: 100%;
        height: initial;
    }

    .section-stisecsmall p {
        font-size: 18px;
    }

    /* CONTRACEPTIVES - MAIN */

    .section-contrarecommend {
        padding: 60px 30px 30px 30px !important;
    }

    .brand__image-box {
        width: 160px;
        height: 160px;
    }

    .brand>h3 {
        margin-bottom: 5px;
    }

    .brand__link {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section-contratype {
        padding: 60px 30px 30px 30px !important;
    }

    .section-contratype .row {
        flex-direction: column;
    }

    .section-contratype .row .col-1-of-3 {
        width: 100%;
        margin: 0 auto;
    }

    .type__image-box {
        height: 200px;
        width: 200px;
    }

    .effect {
        max-width: 100%;
        height: initial
    }

    .effect>img {
        width: 100%;
        height: initial;
    }

    /* CONTRACEPTIVES - CONDOMS */

    .section-condoms>.row {
        display: flex;
        flex-direction: column;
        margin-bottom: 0px;

    }

    .section-condoms .row .col-1-of-4 {
        width: 100%;
    }

    .section-condoms .row .col-1-of-4:not(:last-child) {
        margin-bottom: 10px;
    }


    .product {
        padding: 10px 10px;
    }

    .section-condoms .product_image-box {
        width: 220px;
        height: 200px;
    }

    .section-condoms .product_image-box>img {
        height: 100%;
        width: 100%;
    }

    .product__buy>span,
    .product__price-box>span,
    .product__title-box p {
        font-size: 14px;
    }


    .product__buy {
        margin-bottom: 5px;
    }

    .product__price-box>p,
    .product__buy>p {
        font-size: 16px;
    }

    .product__buy>span {
        display: inline-block;
        width: 50%;
    }

    .section-condoms .row .row-extend {
        padding: 30px 10px 60px;
        background: var(--pink-4);
    }

    .section-condoms .product_image-box>img {
        height: 100%;
        width: 100%;
    }

    .row-extend .note div>p {
        font-size: 16px;
        margin-bottom: 5px;
        width: 80%;
    }

    /* CONTRACEPTIVES - PILLS */

    .section-pills>.row {
        display: flex;
        flex-direction: column;
        margin-bottom: 0px;

    }

    .section-pills .row .col-1-of-4 {
        width: 100%;
    }

    .section-pills .product__title-box>h3 {
        width: 80%;
    }

    .section-pills .pills_image-box {
        width: 100%;
    }

    .section-pills .pills_image-box>img {
        height: 100%;
    }


    .aboutpills>div:nth-child(2) {
        width: 90%;
    }

    .aboutpills>div:nth-child(2)>p:nth-child(2) {
        font-size: 18px;
    }

    .aboutpills__image-box {
        height: 175px;
        margin-top: 10px;
    }

    .section-aboutpills {
        padding: 50px 40px 90px 40px;
        background: var(--pink-4);
    }


    /* CONTRACEPTIVES - INJECTION & IUD */


    .product_image-box {
        width: 200px;
        height: 200px;
    }

    .product--sm .product_image-box {
        width: 100%;
        height: 130px;
    }


    .product--sm .product_image-box>img {
        height: 125%;
        width: 220px;
    }

    .section-inject .product__title-box {
        width: 70%;
    }

    .inject_image-2 {}

    .inject_image-2 .product_image-box {
        width: 200px;
        height: 130px;
    }

    .inject_image-2 .product_image-box>img {

        height: 130%;
    }

    /* ARTICLES - ARTICLE */

    .section-articlesarticle {
        padding: 60px 30px 30px 30px;
    }


    .section-articlesarticle>.row {
        display: flex;
        flex-direction: column;
        margin-bottom: 0px;

    }

    .section-articlesarticle .row .col-1-of-2 {
        width: 100%;
    }

    .section-articlesarticle .row .col-1-of-2:not(:last-child) {
        margin-bottom: 20px;
    }

    .article {
        padding: 20px 10px;
    }

    .article__image-box {
        width: auto;
        height: 300px;
    }

    .article__image-box>img {
        height: 100%;
        width: auto;
    }

    /* ARTICLES - ARTICLE VIDEO */

    .section-articlesvideo {
        padding: 60px 30px 60px 30px;
    }

    .section-articlesvideo>.row {
        display: flex;
        flex-direction: column;
        margin-bottom: 0px;

    }

    .section-articlesvideo .row .col-1-of-2 {
        width: 100%;
    }

    .section-articlesvideo .row .col-1-of-2:not(:last-child) {
        margin-bottom: 20px;
    }

    .video {
        cursor: pointer;
        padding: 30px 20px;
    }

    /* FAQ */

    .section-faqaccordion {
        padding: 30px 30px 60px 30px !important;
    }

    /* OUR TEAM */

    .section-ourteam {
        padding: 60px 30px 30px 30px !important;
    }

    .member__image-box {
        height: 240px;
    }

    .team-container>.member-box:not(:last-child),
    .team-container>.member-box:nth-child(2)>div,
    .team-container>.member-box:nth-child(3)>div {
        margin-bottom: 30px;
    }


    .team-container>.member-box:nth-child(2),
    .team-container>.member-box:nth-child(3) {
        flex-direction: column;
    }

    .team-container>.member-box:nth-child(2)>div,
    .team-container>.member-box:nth-child(3)>div {
        width: 100%;
    }

    .section-visitus .row .content--half>div:nth-child(1) {
        display: none;
    }


    .section-visitus .row .content--half>div {
        width: 100%;
    }

    .visitus__map-box {
        width: 100%;
        height: 400px;
    }

    /* Footer */

    .footer__para {
        display: flex;
        flex-direction: column;
    }

    .footer__para>span:not(:last-child) {
        margin-bottom: 10px;
    }

    .footer__para .spacer--m {
        display: none;
    }
}

/* Media Query for low resolution  Tablets, Ipads */
@media (min-width: 481px) and (max-width: 767px) {
    body {
        _background-color: yellow;
    }
}

/* Media Query for Tablets Ipads portrait mode */
@media (min-width: 768px) and (max-width: 1024px) {
    body {
        _background-color: blue;
    }

    /* Content */

    section {
        padding: 60px 30px 60px 30px !important;
    }

    section .content {
        padding-left: 10px;
    }

    .header-content .header__text-box .row >h1 {
        width: 95%;
        color: var(--white-1);
        font-size: 48px;
    }

    .header-content .header__text-box .row> h1::after {
        margin-top: 10px;
    }

    .heading-secondary {
        margin-bottom: 20px;
    }


    .heading-secondary>p {
        font-size: 42px;
        width: 100%;
    }

    
    .header-content .header__text-box .row> h1::after {
        content: '';
        display: block;
        width: 80px;
        height: 5px;
        _margin-top: 10px;
        background-color: var(--pink-2);
    }

    /* Accordion */

    .acc .acc-question__para>h4 {
        font-size: 21px;
        width: 70%;
    }

    .acc .acc-question__para {
        width: 100%;
        position: relative;
        padding: 10px 0px 10px 1.2%;
        border-bottom: 1px solid var(--off-white-5);
    }

    .acc .acc-question__dropdown-icon--1 {
        position: absolute;
        display: inline-block;
        top: 30%;
        right: 20px;
        background: url(../img/Dropdown.svg) no-repeat;
        height: 19px;
        width: 20px;
        background-position: center;
        background-size: 15px;
    }

    .acc .acc-question__dropdown-icon--2 {
        position: absolute;
        top: 30%;
        right: 20px;
        background: url(../img/Dropdown.svg) no-repeat;
        height: 15px;
        width: 15px;
        background-position: center;
        background-size: 15px;
        transform: rotate(180deg);
        display: none;
    }

    .acc .acc-answer__para p {

        font-size: 16px;
    }

    /* STI */

    .section-sticommon {
        padding: 0px 30px 0px 30px !important;
    }

    .section-sticommon .content .row {
        display: flex;
        flex-direction: column;
    }

    .section-sticommon .content .row .col-1-of-2:not(:last-child) {
        margin-bottom: 40px;
    }

    .section-sticommon .content .row .col-1-of-2 {
        width: 100%;
    }

    .section-aboutsti .row .content--half>div:nth-child(1) {
        display: none;
    }

    .section-aboutsti .row .content--half>div {
        width: 100%;
    }

    .section-aboutsti .row .content--half>div:nth-child(2) {
        padding: 0px 20px 20px 0px;
    }

    .section-stisign .content .row {
        display: flex;
        flex-direction: column;
    }

    .section-stisign .content .row .col-1-of-4:not(:last-child) {
        margin-bottom: 30px;
    }

    .section-stisign .content .row .col-1-of-4 {
        width: 100%;
    }

    /* CONTRACEPTIVES - MAIN */

    .section-condoms>.row {
        display: flex;
        flex-direction: column;
        margin-bottom: 0px;

    }

    .section-condoms .row .col-1-of-4 {
        width: 100%;
    }

    .section-condoms .row .col-1-of-4:not(:last-child) {
        margin-bottom: 10px;
    }


    .product {
        padding: 20px 10px;
    }

    .section-condoms .product_image-box {
        width: 250px;
        height: 200px;
    }

    .section-condoms .product_image-box>img {
        height: 100%;
        width: 100%;
    }

    .product__buy>span,
    .product__price-box>span,
    .product__title-box p {
        font-size: 14px;
    }


    .product__buy {
        margin-bottom: 5px;
    }

    .product__price-box>p,
    .product__buy>p {
        font-size: 16px;
    }

    .product__buy>span {
        display: inline-block;
        width: 50%;
    }

    .section-condoms .row .row-extend {
        padding: 30px 10px 60px;
        background: var(--pink-4);
    }

    .row-extend .note div>p {
        font-size: 16px;
        margin-bottom: 5px;
        width: 80%;
    }


    .section-contrarecommend {
        padding: 60px 30px 30px 30px !important;
    }

    .brand__image-box {
        width: 160px;
        height: 160px;
    }

    .section-contratype .row {
        flex-direction: column;
    }

    .section-contratype .row .col-1-of-3 {
        width: 100%;
        margin: 0 auto;
    }

    .type__image-box {
        height: 200px;
        width: 200px;
    }

    .section-pills>.row {
        display: flex;
        flex-direction: column;
        margin-bottom: 0px;
    }

    .section-pills>.row>.col-1-of-4 {
        width: 100%;
    }

    .section-pills .pills_image-box {
        width: 100%;
    }

    .section-pills .pills_image-box>img {
        height: 100%;
    }

    .product {
        padding: 20px 10px;
    }

    .aboutpills__image-box {
        height: 200px;
        margin-top: 10px;
    }


    .product--sm .product_image-box {
        width: 100%;
        height: 150px;
    }


    .product--sm .product_image-box>img {
        height: 125%;
        width: 250px;
    }

    /* ARTICLES - ARTICLE */

    .section-articlesarticle {
        padding: 60px 30px 30px 30px !important;
    }


    .section-articlesarticle>.row {
        display: flex;
        flex-direction: column;
        margin-bottom: 0px;

    }

    .section-articlesarticle .row .col-1-of-2 {
        width: 100%;
    }

    .section-articlesarticle .row .col-1-of-2:not(:last-child) {
        margin-bottom: 20px;
    }

    .article {
        padding: 20px 10px;
    }

    .article__image-box {
        width: auto;
        height: 300px;
    }

    .article__image-box>img {
        height: 100%;
        width: auto;
    }

    /* ARTICLES - ARTICLE VIDEO */

    .section-articlesvideo {
        padding: 60px 30px 60px 30px !important;
    }

    .section-articlesvideo>.row {
        display: flex;
        flex-direction: column;
        margin-bottom: 0px;

    }

    .section-articlesvideo .row .col-1-of-2 {
        width: 100%;
    }


    .section-articlesvideo .row .col-1-of-2:not(:last-child) {
        margin-bottom: 20px;
    }

    .video {
        cursor: pointer;
        padding: 30px 20px;
    }

    /* OUR TEAM */

    .section-ourteam {
        padding: 60px 30px 30px 30px !important;
    }

    .member__image-box {
        height: 240px;
    }

    .team-container>.member-box:not(:last-child),
    .team-container>.member-box:nth-child(2)>div,
    .team-container>.member-box:nth-child(3)>div {
        margin-bottom: 30px;
    }


    .team-container>.member-box:nth-child(2),
    .team-container>.member-box:nth-child(3) {
        flex-direction: column;
    }

    .team-container>.member-box:nth-child(2)>div,
    .team-container>.member-box:nth-child(3)>div {
        width: 100%;
    }

    .section-visitus .row .content--half>div:nth-child(1) {
        display: none;
    }


    .section-visitus .row .content--half>div {
        width: 100%;
    }

    .visitus__map-box {
        width: 100%;
        height: 400px;
    }

    .member__image-box .box {
        left: 35%;
    }

}


@media screen and (max-width: 480px) {
    /* Content */

    body {
        font-size: 14px;
    }

    .hamburger-icon__container {
        right: 20px;
        top: 16px;
        padding: 10px;
    }

    .hamburger-icon__container>span {
        display: inline-block;
        height: 28px;
        width: 30px;
        background: url(../img/hamburger--white.png) no-repeat;
        background-size: 29px;
    }

    section {
        padding: 25px 20px 20px 20px !important;
    }

    .header-top>.row {
        padding: 0px 10px;
    }

    .header-top>.row>.header__logo-box>img {
        height: 40px;
    }

    .header__text-box {
        padding: 180px 0px 80px 20px;
    }

    .heading-primary--main>.first {
        font-size: 48px;
    }

    .heading-primary--main>.second {
        font-size: 36px;
    }

    .heading-primary--sub {
        font-size: 24px;
    }

    .heading-secondary>span {
        font-size: 14px;
    }

    .heading-secondary>p {
        font-size: 28px;
        width: 100%;
    }

    .learnmore__icon {
        display: inline-block;
        background: url(../img/scroll\ down.svg) no-repeat;
        height: 60px;
        width: 60px;
        background-size: 60px;
    }

    .modal__nav-show>ul {
        padding: 80px 30px 0px 30px;
        margin-bottom: 30px;

    }

    .modal__nav-show>ul>li>a {
        font-size: 28px;
    }

    .modal__nav-show>ul>li>ul>li>a {
        font-size: 21px;
    }

    .modal__nav-show>ul>li>a::after {
        content: '';
        display: block;
        background: transparent;
        width: 0px;
        height: 3px;
        opacity: 0;
        transform: translateY(-5px);
    }


    .modal__nav-show>ul>li.active>a::after {
        content: '';
        display: block;
        background: var(--white-1);
        width: 10px;
        height: 3px;
        transform: translateY(-5px);
        animation: width0to20 0.2s 0.8s linear forwards;
    }

    .modal__nav-show>ul>li>ul>li>a::after {
        content: '';
        display: block;
        background: transparent;
        width: 0px;
        height: 3px;
        opacity: 0;
        transform: translateY(0);
    }


    .modal__nav-show>ul>li>ul>li.active a::after {
        content: '';
        display: block;
        background: var(--white-1);
        width: 10px;
        height: 3px;
        transform: translateY(0);
        animation: width0to20 0.2s 0.5s linear forwards;
    }



    .modal__nav-show .close-box {
        display: inline-block;
        background: url(../img/close.svg) no-repeat;
        height: 30px;
        width: 30px;
        top: 30px;
        right: 30px;
        background-size: 30px;
    }

    .nav-show__links {
        padding: 0px 0px 0px 30px;
    }

    .nav-show__links>p {
        font-size: 36px;
    }

    .nav-show__links>a {
        font-size: 16px;
    }

    /* ACCORDION */

    .accordion-list {
        margin: 0px 0 80px;
    }

    .acc .acc-question__dropdown-icon--2 {
        position: absolute;
        top: 38%;
        right: 20px;
        background: url(../img/Dropdown.svg) no-repeat;
        height: 13px;
        width: 13px;
        background-position: center;
        background-size: 13px;
        transform: rotate(180deg);
        display: none;
    }

    .acc .acc-question__dropdown-icon--1 {
        position: absolute;
        display: inline-block;
        top: 38%;
        right: 20px;
        background: url(../img/Dropdown.svg) no-repeat;
        height: 13px;
        width: 13px;
        background-position: center;
        background-size: 13px;
    }

    .acc .acc-question__para>h4 {
        font-size: 18px;
        width: 85%;
    }

    .acc .acc-answer__para p {
        font-size: 14px;
    }

    /* INDEX - SECTION  */

    section .content {
        padding-left: 0px;
    }

    section {
        padding: 60px 20px 60px 20px;
    }

    .para-strong {
        width: 75%;
        margin: 45px auto 0px;
        font-size: 12px;
    }

    .corevalues-header__image-box {
        width: 200px;
        height: 180px;
    }

    .core-values .heading-tier span,
    .corevalues-header .heading-tier span {
        font-size: 18px;
    }

    .core-values__para,
    .corevalues-header__para {
        font-size: 12px;
    }

    .section-corevalues .content .row {
        flex-direction: column;
    }

    .section-corevalues .content .row>.col-1-of-2 {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 10px;
    }

    .core-values__para {
        width: 70% !important;
    }

    .section-respect p {
        font-size: 16px;
    }

    .header-content .header__text-box {
        padding: 250px 0px 30px 20px !important;
    }

    .header-content .header__text-box .row >h1 {
        color: var(--white-1);
        font-size: 36px;
    }

    .header-content .header__text-box .row h1::after {
        width: 100px;
    }

    .sources>h3 {
        font-size: 14px;
    }

    .sources>li {
        font-size: 8px;
    }

    /* STI */

    .sti-common__image-box {
        height: 180px;
    }


    .sti-common>h3 {
        font-size: 18px;
    }

    .sti-common>ul>li {
        font-size: 14px;
    }

    .sti-sign__image-box {
        height: 150px;
        width: 150px;
    }

    .sti-sign>h3 {
        font-size: 18px;
    }

    .section-sticommon {
        padding: 0px 30px 20px 30px !important;
    }

    .section-stisign {
        padding: 0px 30px 0px 30px !important;
    }


    .section-stisecsmall p {
        font-size: 16px;
    }

    /* CONTRACEPTIVES - MAIN */

    .section-contrarecommend {
        padding: 60px 30px 30px 30px !important;
    }

    .section-contrarecommend .row {
        display: flex;
        flex-direction: column;
        margin-bottom: 35px;
    }

    .section-contrarecommend .row .col-1-of-2 {
        width: 100%;
        margin: 0 auto 0px;
    }

    .section-contrarecommend .row .col-1-of-2:first-child {
        margin: 0 auto 30px;
    }

    .brand__image-box {
        width: 150px;
        height: 150px;
        margin-bottom: 5px;
    }

    .brand>h3 {
        font-size: 18px;
        margin-bottom: 0px;
    }

    .section-contratype .row {
        margin-bottom: 25px;
    }

    .type {
        padding: 15px 0px 15px;
    }


    .type__image-box {
        height: 150px;
        width: 150px;
    }

    .type>h3 {
        font-size: 18px;
    }

    .section-contraeffect {
        padding: 40px 30px 40px 30px !important;
    }

    /* CONTRACEPTIVES - CONDOMS */

    .product__title-box>h3 {
        font-size: 18px;
    }

    .product__buy>span,
    .product__title-box>span,
    .product__price-box>span {
        font-size: 12px;
    }

    .product_image-box {
        width: 180px;
        height: 180px;
        margin-bottom: 15px;
    }

    .product__buy>span,
    .product__title-box>span,
    .product__price-box>span {
        font-size: 12px;
    }

    .row-extend .note>h4 {
        font-size: 16px;
    }

    .row-extend .note div>p {
        font-size: 14px;
    }


    /* CONTRACEPTIVES - PILLS */

    .section-pills>.row {
        display: flex;
        flex-direction: column;
        margin-bottom: 0px;

    }

    .section-pills .row .col-1-of-4 {
        width: 100%;
    }

    .section-pills .row .col-1-of-4:not(:last-child) {
        margin-bottom: 20px;
    }

    .section-pills .row .col-1-of-4 .product {
        padding: 0px 10px 10px;
    }

    .section-pills .product__title-box>h3 {
        width: 90%;
    }

    .section-pills .pills_image-box {
        width: 100%;
        height: 105px;
        margin-bottom: 14px;
    }

    .section-pills .pills_image-box>img {
        height: 100%;
    }



    .aboutpills>div:nth-child(2) {
        width: 90%;
    }

    .aboutpills>div:nth-child(2)>p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .aboutpills>div:nth-child(2)>p:nth-child(2) {
        font-size: 16px;
        width: 80%;
        margin: 0 auto;
    }

    .aboutpills__image-box {
        height: 120px;
        margin-bottom: 15px;
    }

    .section-aboutpills {
        padding: 50px 40px 90px 40px;
        background: var(--pink-4);
    }

    /* CONTRACEPTIVES - INJECTION & IUD */


    .section-inject .product__title-box {
        width: 80%;
    }

    /* ARTICLES - ARTICLE */

    .article {
        padding: 15px 10px;
    }

    .article__image-box {
        width: auto;
        height: 200px;
    }

    .article>h3 {
        font-size: 18px;
    }

    .article__author-name {
        font-size: 16px;
    }

    .video {
        cursor: pointer;
        padding: 15px 10px;
    }

    .video-box iframe {
        width: 100%;
        height: 220px;
    }

    .video>h3 {
        font-size: 18px;
    }

    /* FAQ */
    .section-faqaccordion {
        padding: 20px 20px 60px 20px !important;
    }

      /* OUR TEAM */

      .member>h3 {
        font-size: 18px;
    }

    .member__image-box {
        height: 185px;
    }

    .visitus__info-box>h3 {
        font-size: 18px
    }
}