@charset "UTF-8";

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

* {
    margin: 0;
}

:root {
    --primary-color: rgb(12, 73, 128);
    --secondary-color: #ff8110;
    --text-color: #034e92;
    --light-color: #d3d3d3;
    --white-color: #fff;
    --light-background: #f5f5f5;
    --primary-font: "Open Sans", sans-serif;
    --secondary-font: "Comic Neue", cursive;
}

/*
    Typographic tweaks!
    3. Add accessible line-height
    4. Improve text rendering
  */
body {
    -webkit-font-smoothing: antialiased;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

/*
	  5. Improve media defaults
	*/
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

img {
    width: 100%;
}

button {
    background-color: transparent;
}

/*
    6. Remove built-in form typography styles
  */
input,
button,
textarea,
select {
    outline: none;
}

ul,
li {
    list-style: none;
    padding-left: 0;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    cursor: pointer;
}

a:hover {
    color: var(--secondary-color);
    cursor: pointer;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

/**
  * Show the overflow in IE.
  * 1. Show the overflow in Edge.
  */
button,
input {
    overflow: visible;
}

/**
  * Remove the inheritance of text transform in Edge, Firefox, and IE.
  * 1. Remove the inheritance of text transform in Firefox.
  */
button,
select {
    text-transform: none;
}

/**
  * Correct the inability to style clickable types in iOS and Safari.
  */
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

/**
  * Remove the inner border and padding in Firefox.
  */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/**
  * Restore the focus styles unset by the previous rule.
  */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/**
  * Correct the padding in Firefox.
  */
fieldset {
    padding: 0.35em 0.75em 0.625em;
}

/**
  * 1. Correct the text wrapping in Edge and IE.
  * 2. Correct the color inheritance from `fieldset` elements in IE.
  * 3. Remove the padding so developers are not caught out when they zero out
  *		`fieldset` elements in all browsers.
  */
legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

/**
  * Add the correct vertical alignment in Chrome, Firefox, and Opera.
  */
progress {
    vertical-align: baseline;
}

/**
  * Remove the default vertical scrollbar in IE 10+.
  */
textarea {
    overflow: auto;
}

/**
  * 1. Add the correct box sizing in IE 10.
  * 2. Remove the padding in IE 10.
  */
[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

/**
  * Correct the cursor style of increment and decrement buttons in Chrome.
  */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
  * 1. Correct the odd appearance in Chrome and Safari.
  * 2. Correct the outline style in Safari.
  */
[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

/**
  * Remove the inner padding in Chrome and Safari on macOS.
  */
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
  * 1. Correct the inability to style clickable types in iOS and Safari.
  * 2. Change font properties to `inherit` in Safari.
  */
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

/* Interactive
	  ========================================================================== */
/*
  * Add the correct display in Edge, IE 10+, and Firefox.
  */
details {
    display: block;
}

/*
  * Add the correct display in all browsers.
  */
summary {
    display: list-item;
}

.container {
    max-width: 1440px;
    width: 100%;
    margin-inline: auto;
    padding-inline: clamp(15px, 5vw, 100px);
}

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* Top Header*/
.top-header {
    background-color: var(--primary-color);
    padding: 15px 0;
}

.top-header a {
    color: var(--white-color);
    text-decoration: none;
    padding-inline: 5px;
    font-size: 14px;
}

.top-header .top-menu li {
    position: relative;
}

.top-header .top-menu li:after {
    content: "|";
    position: absolute;
    color: var(--light-color);
    right: -10px;
}

.top-header a:hover {
    color: var(--secondary-color);
}

.hgroup {
    margin: 15px 0;
}

/* Site Branding */
.site-title,
.site-description {
    font-family: var(--secondary-font);
    color: var(--primary-color);
    font-size: 24px;
}

.site-description {
    color: var(--secondary-color);
    text-align: center;
}

.site-branding img {
    width: 182px;
}

/* Social Icons   */
.social-icons ul.d-flex {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 24px;
}

.social-icons a {
    font-size: 26px;
}

a[href*="facebook.com"] {
    color: #1877f2;
}

a[href*="tiktok.com"] {
    color: #010101;
}

a[href*="instagram.com"] {
    color: #c32aa3;
}

/* Main Navigation */
.main-navigation {
    border-top: 1px solid var(--light-color);
    margin-top: 10px;
    padding: 10px 0 10px 29px;
    border-bottom: 1px solid var(--light-color);
}

.primary-menu {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 2.5rem;
}

.primary-menu li.menu-item a {
    position: relative;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 16px;
    font-family: var(--primary-font);
}

.primary-menu li.menu-item.active a {
    color: var(--secondary-color);
}

.primary-menu li.menu-item a::before {
    position: absolute;
    content: "✦";
    left: -16px;
    bottom: 0;
}

.primary-menu li.menu-item {
    position: relative;
}

.primary-menu li.menu-item::before {
    position: absolute;
    color: var(--light-color);
    content: "|";
    left: -30px;
}

/* Hero Section */
.slick-next {
    right: 40px;
}

.slick-prev {
    left: 40px;
}

.slick-prev,
.slick-next {
    width: 30px;
    height: 30px;
    color: var(--white-color);
    z-index: 9;
}

button.slick-next.slick-arrow,
button.slick-prev.slick-arrow {
    background: var(--primary-color);
    border-radius: 1000px;
    color: #fff;
}

button.slick-next.slick-arrow:hover,
button.slick-prev.slick-arrow:hover {
    background: var(--secondary-color);
}

.slick-prev:before,
.slick-next:before {
    opacity: 1;
    color: #fff;
}

/* Information Section */
.information {
    background: var(--primary-color);
    padding: 3rem 0;
}

.info-wrap,
.preparation-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}

.info-wrap > .item {
    width: 24%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.info-wrap .item img {
    width: 200px;
}

.info-wrap a {
    font-size: 16px;
    color: var(--white-color);
    font-weight: 500;
}

.info-wrap a:hover {
    color: var(--secondary-color);
}

.entry-content p {
    font-size: 14px;
    color: var(--light-color);
    line-height: 27px;
    margin-bottom: 10px;
}

/* About section*/
.has-background {
    background-color: var(--light-background);
    padding: 100px 0;
}

.content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.content-wrapper .entry-content {
    width: 75%;
    width: calc(100% - 340px);
}

.content-wrapper .entry-content p {
    font-size: 16px;
    color: rgb(43, 43, 43);
    line-height: 27px;
    margin-bottom: 10px;
}

.facebook-post {
    width: 310px;
    background-color: #fafafa;
    -moz-box-shadow: 1px 1px 10px #a9a9a9;
    -webkit-box-shadow: 1px 1px 10px #a9a9a9;
    box-shadow: 1px 1px 10px #a9a9a9;
    padding: 5px;
}

.entry-title {
    font-size: 24px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
}

h2.entry-title {
    border-bottom: 1px solid var(--light-color);
    margin-bottom: 20px;
}

/* Services */
.service.has-background {
    padding-top: 0px;
}

.our-services {
    column-count: 4;
    padding-left: 20px;
}

.our-services li,
.list-style li {
    position: relative;
    font-size: 16px;
    color: rgb(43, 43, 43);
    padding-bottom: 10px;
    font-weight: 400;
}

.our-services li::before,
.list-style li::before {
    position: absolute;
    content: "\f14a";
    font-family: "FontAwesome";
    display: inline-block;
    left: -20px;
    top: 4px;
    color: var(--secondary-color);
}

.list-style {
    padding-left: 25px;
}

.our-services li:hover::before .list-style li:hover::before {
    color: var(--primary-color);
}

/* Preparation Wrapper */

.preparation {
    margin-top: -42px;
    margin-bottom: 100px;
}

.preparation .container {
    width: 1330px;
    max-width: 100%;
}

.preparation-wrapper > .post {
    width: 20%;
}

.preparation-wrapper {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    padding: 20px 0;
    background-color: #ffffff;
    -moz-box-shadow: 1px 1px 8px #c0c0c0;
    -webkit-box-shadow: 1px 1px 8px #c0c0c0;
    box-shadow: 1px 1px 8px #c0c0c0;
}

.post-title,
.partner-title {
    background: var(--primary-color);
    color: var(--white-color);
    text-align: center;
    padding: 4px 0;
    font-size: 20px;
    font-weight: 500;
}

.post-content p {
    font-size: 14px;
    font-weight: 300;
    margin: 10px 0;
    text-align: justify;
}

/* Client */
.our-client {
    position: relative;
}

.client figure {
    padding-inline: 10px;
}

.partner-title {
    width: 250px;
    margin-inline: auto;
    position: absolute;
    top: 0;
    right: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Footer Widget */
.site-footer {
    padding: 20px 0;
    background-color: var(--primary-color);
}

.footer-widget {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
    padding: 30px 0;
}

.footer-widget > .widget {
    width: 31%;
    color: var(--white-color);
}

.footer-widget > .widget.quick-link {
    width: 33%;
}

.widget.quick-link li,
.widget li {
    position: relative;
    font-size: 16px;
    padding-bottom: 10px;
    font-weight: 400;
}

.widget li:hover::before {
    color: var(--secondary-color);
}

.widget a {
    color: var(--white-color);
}

.widget-title {
    color: var(--white-color);
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.widget li > span {
    font-size: 12px;
}

/* Footer Testimonial*/

.testimonial .item img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.testimonial .item,
.story-wrapper .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    -webkit-box-pack: space-evenly;
    justify-content: space-evenly;
}

.testimonial .item .entry-content {
    width: calc(100% - 100px);
    width: 68%;
}

.testimonial .item .entry-content p,
.story-wrapper .item .entry-content p {
    font-size: 14px;
    line-height: 24px;
}

.testimonial h3.entry-title {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
}

h4.sub-title {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 400;
    margin-top: 2px;
}

.copy-right p {
    color: var(--white-color);
    text-align: center;
}
.copy-right a {
    color: var(--secondary-color);
}

.slick-dots li.slick-active button:before {
    color: var(--secondary-color);
}

.slick-dots li button:before {
    font-size: 40px;
    width: 20px;
    height: 20px;
}

/* Abroad Page*/
.study-in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 50px;
}

.study-in figure {
    width: calc(100% - 300px);
    width: 76%;
}

.study-in-item .post-title {
    background: var(--primary-color);
    color: var(--white-color);
    text-align: center;
    padding: 10px 0;
    font-size: 24px;
    font-weight: 600;
}

.study-in-item {
    background-color: #ffffff;
    -moz-box-shadow: 0px 1px 9px #a9a9a9;
    -webkit-box-shadow: 0px 1px 9px #a9a9a9;
    box-shadow: 0px 1px 9px #a9a9a9;
    width: 300px;
}

.countries-list {
    padding: 20px 30px;
}

.countries-list li {
    text-transform: capitalize;
}

.info .entry-content .post-title {
    margin: 10px 0;
}

p.line,
.content-wrapper .entry-content p.line {
    border-bottom: 1px solid var(--light-color);
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    margin: 10px 0;
}

.sidebar {
    width: 310px;
}

.sidebar > div {
    margin-bottom: 30px;
}

.story-wrapper .item img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.story-wrapper .item .entry-content {
    width: calc(100% - 230px);
    width: 60%;
}

.story-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.margin-space {
    margin: 10px 0;
}

.sucess-story {
    padding-top: 70px;
    padding-bottom: 100px;
}

.story-wrapper .item.testimonial-list {
    background: var(--light-background);
    padding: 30px;
    border-radius: 40px;
}

.story-wrapper .item h3.entry-title {
    color: var(--primary-color);
}

@media (min-width: 1200px) {
    .lg-none {
        display: none;
    }
}

/* All Mobile size smaller than standard 479 (devices and browsers) */

@media only screen and (max-width: 479px) {
    .footer-widget,
    .testimonial .item,
    .story-wrapper .item,
    .preparation-wrapper,
    .content-wrapper,
    .info-wrap,
    .preparation-wrapper,
    .info-wrap > .item,
    .wrapper.d-flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer-widget > .widget,
    .footer-widget > .widget.quick-link,
    .preparation-wrapper > .post,
    .content-wrapper .entry-content,
    .facebook-post,
    .info-wrap > .item {
        width: 100%;
    }

    .widget-title,
    .info-wrap > .item {
        text-align: center;
    }

    .widget-title {
        margin-bottom: 15px;
    }

    .has-background {
        padding: 70px 0;
    }

    .preparation-wrapper > .post {
        padding: 10px;
    }

    .our-services {
        column-count: 2;
        padding-left: 22px;
    }
}

.client img {
    aspect-ratio: 16 / 9;
    object-fit: contain;
}
